소스 검색

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

Lucas Fernandes Nogueira 3 년 전
부모
커밋
3d92f4c272
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tooling/cli.rs/src/dev.rs

+ 1 - 1
tooling/cli.rs/src/dev.rs

@@ -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>,