From f5f62da932da18e159e50078737fde926e43238d Mon Sep 17 00:00:00 2001 From: Walton Hoops Date: Thu, 2 Nov 2023 06:28:41 -0600 Subject: [PATCH] fix unkown command elxir with rtx and fish (#1019) --- 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