Fix obvious realpath.fish bug.

We want to run the builtin on the argument we just sanitized, not all of them given!
This commit is contained in:
Aaron Gyes 2016-10-02 02:47:12 -07:00 committed by GitHub
parent 94aeb47f63
commit 36fe172932

View file

@ -41,7 +41,7 @@ if not command -s realpath >/dev/null
continue
case "*"
fish_realpath $argv
fish_realpath $arg
end
end
end