11 lines
210 B
Bash
Executable File
11 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
/bin/bash port-check.sh
|
|
[[ $? != 0 ]] && exit 1
|
|
|
|
for build in $(ls *build*.sh | grep -v all); do
|
|
echo "Starting build file ${buildx} ..."
|
|
/bin/bash ${buildx}
|
|
done
|
|
/bin/bash fix-permissions.sh
|