mailcow/build-all.sh

11 lines
209 B
Bash
Raw Normal View History

2016-12-09 20:39:02 +01:00
#!/bin/bash
2016-12-12 09:26:27 +01:00
/bin/bash port-check.sh
[[ $? != 0 ]] && exit 1
2016-12-12 10:01:27 +01:00
for build in $(ls *build*.sh | grep -v all); do
2016-12-09 20:39:02 +01:00
echo "Starting build file ${buildx} ..."
2016-12-13 07:59:03 +01:00
/bin/bash ${build}
2016-12-09 20:39:02 +01:00
done
/bin/bash fix-permissions.sh