Skip to content

Commit

Permalink
Merge pull request #26 from tkhr0/fix
Browse files Browse the repository at this point in the history
fix: default watch option is false in the show command
  • Loading branch information
tkhr0 committed Dec 6, 2023
2 parents 6b375c7 + 5b2ca2c commit a22cd04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ struct Show {
#[clap(value_parser)]
/// Enter the profile name you want to check.
profile: String,
#[clap(short, long, action = ArgAction::SetFalse)]
#[clap(short, long, action = ArgAction::SetTrue)]
/// After showing code, watch for changes.
watch: bool,
}
Expand Down

0 comments on commit a22cd04

Please sign in to comment.