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