Skip to content

Commit 15f10ef

Browse files
committed
fix: use a pipe instead of command subsitution to correctly run the comannd outputted by vfoz activate command with fish.
1 parent c4b1c9b commit 15f10ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/launch.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ else
8080
set vfox (which vfox)
8181
if test -n "$vfox"
8282
echo "vfox executable found at $vfox, activating" >&2
83-
source ( "$vfox" activate fish )
83+
"$vfox" activate fish | source
8484
else
8585
echo "vfox not found" >&2
8686
export_stdlib_path "which elixir"

0 commit comments

Comments
 (0)