Skip to content

Commit

Permalink
fix(cli): --quiet typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson authored and jwerle committed Oct 6, 2023
1 parent eb83a3a commit 47bda25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/cli.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2471,7 +2471,7 @@ int main (const int argc, const char* argv[]) {
argvForward += " --headless";
}

if (optionsWithoutValue.find("--quite") != optionsWithoutValue.end() || equal(rc["build_quiet"], "true")) {
if (optionsWithoutValue.find("--quiet") != optionsWithoutValue.end() || equal(rc["build_quiet"], "true")) {
flagQuietMode = true;
}

Expand Down

0 comments on commit 47bda25

Please sign in to comment.