fix(cli.rs): --release flag for the dev command, closes #3324 (#3348)

This commit is contained in:
Lucas Fernandes Nogueira 2022-02-06 23:52:57 -03:00 committed by GitHub
parent f739e446f5
commit 3d92f4c272
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ pub struct Options {
#[clap(short, long)]
config: Option<String>,
/// Run the code in release mode
#[clap(short, long)]
#[clap(long = "release")]
release_mode: bool,
/// Args passed to the binary
args: Vec<String>,