mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Merge pull request #221 from dtolnay/flagquote
Apply flaglike quoting only to flags
This commit is contained in:
commit
d9d2488371
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