build-all.sh 209 B

12345678910
  1. #!/bin/bash
  2. /bin/bash port-check.sh
  3. [[ $? != 0 ]] && exit 1
  4. for build in $(ls *build*.sh | grep -v all); do
  5. echo "Starting build file ${buildx} ..."
  6. /bin/bash ${build}
  7. done
  8. /bin/bash fix-permissions.sh