remove redundant echo from __fish_pipestatus_with_signal.fish

This commit is contained in:
zabereer 2019-02-27 05:39:17 +00:00
parent 378b5d7295
commit a6f9140963

View file

@ -1,5 +1,5 @@
function __fish_pipestatus_with_signal --description "Print arguments from \$pipestatus replacing values with signal names where appropriate" function __fish_pipestatus_with_signal --description "Print arguments from \$pipestatus replacing values with signal names where appropriate"
for pstat in $argv for pstat in $argv
echo (__fish_status_to_signal $pstat) __fish_status_to_signal $pstat
end end
end end