Add Deno to the path only if the directory exists

This commit is contained in:
Gergely Polonkai
2025-08-08 13:25:51 +02:00
parent 6834c73fe5
commit 71c73d5806

View File

@@ -1,2 +1,4 @@
if test -d $HOME/.deno
set -gx DENO_INSTALL "$HOME/.deno" set -gx DENO_INSTALL "$HOME/.deno"
fish_add_path $DENO_INSTALL/bin fish_add_path $DENO_INSTALL/bin
end