From 6fd4a996e52eb0df219052810bc595900d2700a2 Mon Sep 17 00:00:00 2001 From: Walton Hoops Date: Tue, 31 Oct 2023 17:54:47 -0600 Subject: [PATCH] fix unkown command elxir with rtx and fish --- scripts/launch.fish | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/launch.fish b/scripts/launch.fish index e3a7552eb..4b44c9b54 100644 --- a/scripts/launch.fish +++ b/scripts/launch.fish @@ -26,7 +26,8 @@ else set rtx (which rtx) if test -n "$rtx" echo "rtx executable found in $rtx, activating" >&2 - "$rtx" activate fish | source + + "$rtx" env -s fish | source else echo "rtx not found" >&2 end