diff --git a/check/src/main.rs b/check/src/main.rs index 6e7c760..5e2c31d 100644 --- a/check/src/main.rs +++ b/check/src/main.rs @@ -113,6 +113,7 @@ pub struct CheckConfig { program_address: Option, /// If specified, will not run the command in a reproducible docker container. Useful for local /// builds, but at the risk of not having a reproducible command for verification purposes. + #[arg(long)] no_verify: bool, } @@ -135,6 +136,7 @@ pub struct VerifyConfig { /// Hash of the deployment transaction. #[arg(long)] deployment_tx: String, + #[arg(long)] /// If specified, will not run the command in a reproducible docker container. Useful for local /// builds, but at the risk of not having a reproducible command for verification purposes. no_verify: bool,