diff options
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,9 +5,9 @@ DEBUG=false # true set -e [ "$DEBUG" == 'true' ] && set -x -if [ -z "$URL" ]; then echo "Error: URL env variable must be set"; exit 1; fi +if [ -z "$URL" ]; then echo "Error: URL env variable must be set. Exiting..."; exit 1; fi if [ -z "$RESPONSIBLE_EMAIL" ]; - then echo "Error: RESPONSIBLE_EMAIL env variable must be set"; exit 1; fi + then echo "Error: RESPONSIBLE_EMAIL env variable must be set. Exiting..."; exit 1; fi echo " * Install dependencies" |