We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0cdbb79 + a12f743 commit cd91d36Copy full SHA for cd91d36
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
@@ -80,7 +80,7 @@ else
80
set vfox (which vfox)
81
if test -n "$vfox"
82
echo "vfox executable found at $vfox, activating" >&2
83
- source ( "$vfox" activate fish )
+ "$vfox" activate fish | source
84
85
echo "vfox not found" >&2
86
export_stdlib_path "which elixir"
0 commit comments