mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-12-25 02:29:32 +02:00
11 lines
209 B
Bash
Executable File
11 lines
209 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 ${build}
|
|
done
|
|
/bin/bash fix-permissions.sh
|