1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2024-12-12 10:45:14 +02:00
This commit is contained in:
andryyy 2018-10-28 12:46:59 +01:00
commit c0eb41400a

View File

@ -3,6 +3,8 @@
#exit on error and pipefail #exit on error and pipefail
set -o pipefail set -o pipefail
umask 0022
for bin in curl docker-compose docker git awk sha1sum; do for bin in curl docker-compose docker git awk sha1sum; do
if [[ -z $(which ${bin}) ]]; then echo "Cannot find ${bin}, exiting..."; exit 1; fi if [[ -z $(which ${bin}) ]]; then echo "Cannot find ${bin}, exiting..."; exit 1; fi
done done