Add --no-retry (fix #97)

This commit is contained in:
Roey Darwish Dror
2018-12-05 13:38:18 +02:00
parent 2a5f5af934
commit 0500080e40
3 changed files with 55 additions and 39 deletions

View File

@@ -73,4 +73,8 @@ pub struct Opt {
/// Print what would be done
#[structopt(short = "n", long = "dry-run")]
pub dry_run: bool,
/// Do not ask to retry failed steps
#[structopt(long = "no-retry")]
pub no_retry: bool,
}