From 5ac30328a7bbd1a8d974bb5fb1f14d8bd2d1e03f Mon Sep 17 00:00:00 2001 From: Yuri Pieters Date: Tue, 12 Sep 2023 15:29:07 +0100 Subject: [PATCH] fix(fish): use builtin realpath over system one (#1637) Co-authored-by: Yuri Pieters --- asdf.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asdf.fish b/asdf.fish index 2554ab5b..6f7a3050 100644 --- a/asdf.fish +++ b/asdf.fish @@ -1,5 +1,5 @@ if test -z $ASDF_DIR - set ASDF_DIR (realpath --no-symlinks (dirname (status filename))) + set ASDF_DIR (builtin realpath --no-symlinks (dirname (status filename))) end set --export ASDF_DIR $ASDF_DIR