# returns the default MACOSX_DEPLOYMENT_M1
|
|
SCRIPT_DIR=$(dirname $0)
|
|
|
|
# Get Absolute Paths
|
|
pushd "${SCRIPT_DIR}" >/dev/null
|
|
SCRIPT_DIR=$(pwd)
|
|
popd >/dev/null
|
|
|
|
CONFIG_PLIST="${SCRIPT_DIR}/CommonPEPDependencies/config.plist"
|
|
RESULT=$(/usr/libexec/PlistBuddy -c "Print MACOSX_DEPLOYMENT_M1" "${CONFIG_PLIST}")
|
|
|
|
echo ${RESULT}
|