From 0ac49ce81eb40f2287d4941b4e1f8bf603255b27 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sun, 22 Sep 2024 15:10:56 +0200 Subject: [PATCH] Fix incorrect `fish` shebang --- scripts/Common/Software/fish/profile.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Common/Software/fish/profile.fish b/scripts/Common/Software/fish/profile.fish index b0f4153d1..d124b3d2c 100755 --- a/scripts/Common/Software/fish/profile.fish +++ b/scripts/Common/Software/fish/profile.fish @@ -4,6 +4,6 @@ begin source "$dir/../../Scripts/profile-base.fish" function installFishProfile -a name title - addProfileStatement "$name" "$title" /bin/fish fish /etc/fish/conf.d $argv[3..] + addProfileStatement "$name" "$title" "/bin/env fish" fish /etc/fish/conf.d $argv[3..] end end