Apply flaglike quoting only to flags

Before:

    --config='build.rustflags=[]' --config host.rustflags='[]'

After:

    --config='build.rustflags=[]' --config 'host.rustflags=[]'
This commit is contained in:
David Tolnay 2024-04-06 09:28:23 -07:00
parent 6b5ab10276
commit 59b7f1a9ad
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

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() {