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 3d99256 commit 877e88dCopy full SHA for 877e88d
install.sh
@@ -6,12 +6,12 @@ set -e
6
echo "Preparing to install CoScale CLI"
7
8
# Check command arguments
9
-if [ -z "$COSCALE_APPID" ]; then
+if [ -z ${COSCALE_APPID+x} ]; then
10
echo "App id:"
11
read -e COSCALE_APPID
12
fi
13
14
-if [ -z "$COSCALE_TOKEN" ]; then
+if [ -z ${COSCALE_TOKEN+x} ]; then
15
echo "Access token:"
16
read -e COSCALE_TOKEN
17
0 commit comments