We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48d6b9b commit 4dedb3bCopy full SHA for 4dedb3b
1 file changed
.github/workflows/validate.yml
@@ -124,6 +124,12 @@ jobs:
124
else
125
INFO_PLIST_PATH="${{ env.UNITY_PROJECT_PATH }}/Builds/${{ matrix.build-target }}/com.test.buildalon.xcode/Info.plist"
126
fi
127
+ # make sure plist buddy is installed
128
+ if ! command -v /usr/libexec/PlistBuddy &> /dev/null
129
+ then
130
+ echo "PlistBuddy could not be found"
131
+ exit 1
132
+ fi
133
# set ITSAppUsesNonExemptEncryption to false in Info.plist using PlistBuddy
134
/usr/libexec/PlistBuddy -c "Add :ITSAppUsesNonExemptEncryption bool false" "$INFO_PLIST_PATH"
135
- uses: ./ # buildalon/unity-xcode-builder
0 commit comments