We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c50cf4 commit c4b1c9bCopy full SHA for c4b1c9b
1 file changed
scripts/launch.fish
@@ -62,7 +62,7 @@ else
62
set mise (which mise)
63
if test -n "$mise"
64
echo "mise executable found at $mise, activating" >&2
65
- source ( "$mise" env -s fish )
+ "$mise" env -s fish | source
66
export_stdlib_path "mise which elixir"
67
else
68
echo "mise not found" >&2
@@ -71,7 +71,7 @@ else
71
set rtx (which rtx)
72
if test -n "$rtx"
73
echo "rtx executable found at $rtx, activating" >&2
74
- source ( "$rtx" env -s fish )
+ "$rtx" env -s fish | source
75
export_stdlib_path "rtx which elixir"
76
77
echo "rtx not found" >&2
0 commit comments