Skip to content

Commit 7379c82

Browse files
author
Samuel Vandamme
committed
Fixed incorrect var
1 parent a42b84c commit 7379c82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fi
3434
echo "### Detecting operating system"
3535
echo
3636
os=`uname -o | awk '{split($0,a,"/"); print tolower(a[2])}'`
37-
echo "Operation system: {{$os}}"
37+
echo "Operation system: $os"
3838
echo
3939

4040
# Fetch latest release list from Github
@@ -45,7 +45,7 @@ github_data=`curl -s -L https://api.github.com/repos/CoScale/coscale-cli/release
4545

4646
# Select correct release
4747
release=`echo "$github_data" | grep $os`
48-
echo "### Latest release: ${{release}}"
48+
echo "### Latest release: $release"
4949

5050
# Start install
5151
echo

0 commit comments

Comments
 (0)