Fix typo in install-from-binstall-release.sh (#1359)

This commit is contained in:
haitrungle 2023-09-15 05:40:22 +08:00 committed by GitHub
parent 4c339d9a2b
commit c02350e94c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ elif [ "$os" == "Linux" ]; then
url="${base_url}${target}.tgz" url="${base_url}${target}.tgz"
curl -L --proto '=https' --tlsv1.2 -sSf "$url" | tar -xvzf - curl -L --proto '=https' --tlsv1.2 -sSf "$url" | tar -xvzf -
else else
echo "Unupporteed OS ${os}" echo "Unsupported OS ${os}"
exit 1 exit 1
fi fi