mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-05 08:11:15 -03: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:
@@ -268,7 +268,7 @@ function __fish_expand_pid_args
|
|||||||
return 1
|
return 1
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
echo $arg
|
printf "%s\n" $arg
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user