From d1a563dcc0107d5c631f73b114044898b5cadcf9 Mon Sep 17 00:00:00 2001 From: Yuri Pieters Date: Sat, 1 Jul 2023 14:53:30 +0100 Subject: [PATCH] fix(fish)!: don't resolve symlinks for ASDF_DIR (#1583) Co-authored-by: Yuri Pieters --- asdf.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asdf.fish b/asdf.fish index afb161dc..6f83cca7 100644 --- a/asdf.fish +++ b/asdf.fish @@ -1,5 +1,5 @@ if test -z $ASDF_DIR - set ASDF_DIR (realpath (dirname (status filename))) + set ASDF_DIR (realpath --no-symlinks (dirname (status filename))) end set --export ASDF_DIR $ASDF_DIR