mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
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:
parent
94aeb47f63
commit
36fe172932
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ if not command -s realpath >/dev/null
|
|||
continue
|
||||
|
||||
case "*"
|
||||
fish_realpath $argv
|
||||
fish_realpath $arg
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue