Added 'set -e' to the top of docker/install.sh so bash exits if there are any errors during package installation.
This commit is contained in:
parent
286046e2df
commit
6b78b8a131
|
@ -1,5 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Tells bash to exit if any command returns a non-zero return value
|
||||||
|
set -e
|
||||||
|
|
||||||
service="$1"
|
service="$1"
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
|
|
Loading…
Reference in New Issue