mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-25 12:23:09 +00:00
Stop echo
from swallowing passthrough arguments
The job expansion wrapper was swallowing `-n` (and presumably `-e` and others) when that was the literal argument we needed to emit. Using `printf %s ...` instead.
This commit is contained in:
parent
7ec761fc75
commit
2961dcc4be
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ function __fish_expand_pid_args
|
|||
return 1
|
||||
end
|
||||
else
|
||||
echo $arg
|
||||
printf "%s\n" $arg
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue