Skip to content

Commit

Permalink
fix verbose and no-color sass cli flags
Browse files Browse the repository at this point in the history
  • Loading branch information
kketch committed Sep 21, 2023
1 parent 469eb25 commit 92ac6f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/lib/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,14 @@ fn cli() -> Command {
.arg(
Arg::new("NO_COLOR")
.short('c')
.action(ArgAction::SetTrue)
.long("no-color")
.hide(true)
.help("Whether to use terminal colors for messages.")
)
.arg(
Arg::new("VERBOSE")
.action(ArgAction::SetTrue)
.long("verbose")
.hide(true)
.help("Print all deprecation warnings even when they're repetitive.")
Expand Down

0 comments on commit 92ac6f8

Please sign in to comment.