From b5805cbd8be865ec01afff4ccb0a3869ac1e6032 Mon Sep 17 00:00:00 2001 From: "dth@taiga.ai" Date: Sun, 11 Jun 2023 21:40:28 +0200 Subject: [PATCH] :bug: fix bash var concat syntax --- install_fish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_fish.sh b/install_fish.sh index 0c545e2..399946e 100644 --- a/install_fish.sh +++ b/install_fish.sh @@ -4,7 +4,7 @@ FISH_VERSION=3.3.1+ds-3 # I'd like to use fish, please echo >&2 "=====================================================================" echo >&2 " >> installing fish" -sudo apt-get install -y fish=$(FISH_VERSION) +sudo apt-get install -y fish=${FISH_VERSION} echo >&2 " >>> changing shell to fish" sudo chsh -s /usr/bin/fish $USER