osx: rename script

* changes some references of mg to zg
This commit is contained in:
andy5995
2018-01-14 15:24:31 -06:00
parent 409f0f2333
commit 13a1c734f3
4 changed files with 10 additions and 10 deletions

View File

@@ -58,10 +58,10 @@ if [ "$skipbinarybuild" -eq "0" ]; then
echo "building binaries ..."
cd "$CURRENTDIR"
if [ -d "build" ]; then rm -rf "build"; fi
build_command="./build-mg.sh -b"
build_command="./build-zg.sh -b"
if [ "$NUMCORES" != "" ]; then build_command="$build_command -c $NUMCORES"; fi
$build_command
if [ "$?" -ne "0" ]; then echo 'ERROR: "./build-mg.sh" failed.' >&2; exit 1; fi
if [ "$?" -ne "0" ]; then echo 'ERROR: "./build-zg.sh" failed.' >&2; exit 1; fi
else
echo "SKIPPING build of binaries ..."
fi