We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a42b84c commit 7379c82Copy full SHA for 7379c82
install.sh
@@ -34,7 +34,7 @@ fi
34
echo "### Detecting operating system"
35
echo
36
os=`uname -o | awk '{split($0,a,"/"); print tolower(a[2])}'`
37
-echo "Operation system: {{$os}}"
+echo "Operation system: $os"
38
39
40
# Fetch latest release list from Github
@@ -45,7 +45,7 @@ github_data=`curl -s -L https://api.github.com/repos/CoScale/coscale-cli/release
45
46
# Select correct release
47
release=`echo "$github_data" | grep $os`
48
-echo "### Latest release: ${{release}}"
+echo "### Latest release: $release"
49
50
# Start install
51
0 commit comments