From 36fe172932d6c6634d0c50628bb87621c7f0914a Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Sun, 2 Oct 2016 02:47:12 -0700 Subject: [PATCH] Fix obvious realpath.fish bug. We want to run the builtin on the argument we just sanitized, not all of them given! --- share/functions/realpath.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/functions/realpath.fish b/share/functions/realpath.fish index 0d20ab6de..3b8eaf4a5 100644 --- a/share/functions/realpath.fish +++ b/share/functions/realpath.fish @@ -41,7 +41,7 @@ if not command -s realpath >/dev/null continue case "*" - fish_realpath $argv + fish_realpath $arg end end end