diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-08 12:57:24 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-08 12:57:24 +0200 |
commit | 5f2acb5231c18bd47875ecf2d1f6d5668d98f65f (patch) | |
tree | a4bc4c1a902869b6819a33c752d24b2c230a4c3a /install.sh | |
parent | a63fde2ca7730e54204e29b287f6d654f3092399 (diff) | |
download | Comm-on-net-5f2acb5231c18bd47875ecf2d1f6d5668d98f65f.tar.bz2 Comm-on-net-5f2acb5231c18bd47875ecf2d1f6d5668d98f65f.zip |
Install: minor
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" |