We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 666d41a commit a00242eCopy full SHA for a00242e
cli/src/main.rs
@@ -20,11 +20,11 @@ struct Args {
20
#[derive(Subcommand, Debug, Clone)]
21
enum Commands {
22
Build {
23
+ #[arg(short, long, action = clap::ArgAction::SetTrue)]
24
+ push: bool,
25
/// Location of the config file.
26
/// If no such file exists the program creates a sample configuration file in that
27
/// location and then exits.
- #[arg(short, long, action = clap::ArgAction::SetTrue)]
- push: bool,
28
#[arg(short, long, default_value = "niksi.json")]
29
config: PathBuf,
30
#[arg(short, long, default_value = ".")]
0 commit comments