You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
326 B
Bash
13 lines
326 B
Bash
![]()
2 years ago
|
# 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}
|