From a98f363eaa3664a2a0c9e6bb7af35e202d3838d8 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 b0f4153d..d124b3d2 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