diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-08 11:54:17 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-08-08 11:54:17 +0200 |
commit | f8edda45b5198adb75e98afea9cd487918422f02 (patch) | |
tree | c3c0a008ddd69d2bb77c104dfda9bc54ba40b184 | |
parent | 85c6017c0b8eb30c0fe6506cdc0e8bb37d5efc2c (diff) | |
download | Comm-on-net-f8edda45b5198adb75e98afea9cd487918422f02.tar.bz2 Comm-on-net-f8edda45b5198adb75e98afea9cd487918422f02.zip |
Install: set URL by env var
-rwxr-xr-x | install.sh | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,8 +1,7 @@ #!/bin/bash -# edit -URL=commonnet.myorganization.net -# stop edit + +if [ -z "$URL" ]; then echo "URL env variable must be set"; exit 1; fi echo " * Install dependencies" |