mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
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:
parent
6b5ab10276
commit
59b7f1a9ad
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue