Addressed PR suggestions

This commit is contained in:
Tom Kidd 2021-10-22 10:00:20 -05:00
parent 2fef57fffa
commit 3d06d07516
5 changed files with 9 additions and 11 deletions

2
.gitignore vendored
View File

@ -13,7 +13,7 @@ Makefile.local
.DS_Store
.LSOverride
Icon?
make-macosx-values.sh
make-macosx-values.local
# Xcode
####################

View File

@ -1,5 +1,4 @@
#!/bin/bash
CC=gcc-4.0
cd `dirname $0`
if [ ! -f Makefile ]; then
@ -24,7 +23,7 @@ echo "Building X86_64 Client/Dedicated Server"
echo "Building ARM64 Client/Dedicated Server"
echo
if [ $1 == "" ]; then
if [ "$1" == "" ]; then
echo "Run script with a 'notarize' flag to perform signing and notarization."
fi
@ -59,7 +58,7 @@ fi
if [ "$1" == "notarize" ]; then
# user-specific values
# specify the actual values in a separate file called make-macosx-values.sh
# specify the actual values in a separate file called make-macosx-values.local
# ****************************************************************************************
# identity as specified in Keychain
@ -75,7 +74,7 @@ if [ "$1" == "notarize" ]; then
ASC_PROVIDER="XXXXXXXXX"
# ****************************************************************************************
source make-macosx-values.sh
source make-macosx-values.local
# release build location
RELEASE_LOCATION="build/release-darwin-universal2"

View File

@ -22,7 +22,7 @@ elif [ "$1" == "arm64" ]; then
BUILDARCH=arm64
else
echo "Invalid architecture: $1"
echo "Valid architectures are x86, x86_64, arm64 or ppc"
echo "Valid architectures are arm64, x86_64, x86, or ppc"
exit 1
fi

View File

@ -46,6 +46,5 @@ TODO:
NO CARRIER