Merge pull request #221 from dtolnay/flagquote

Apply flaglike quoting only to flags
This commit is contained in:
David Tolnay 2024-04-06 09:40:20 -07:00 committed by GitHub
commit d9d2488371
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -520,7 +520,7 @@ fn print_command(args: &CommandArgs, color: &Coloring) -> Result<()> {
let arg_lossy = arg.to_string_lossy();
shell_words.push(' ');
match arg_lossy.split_once('=') {
Some((flag, value)) if flag == quoter.quote(flag)? => {
Some((flag, value)) if flag.starts_with('-') && flag == quoter.quote(flag)? => {
shell_words.push_str(flag);
shell_words.push('=');
if !value.is_empty() {