File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ get_uuid() {
9
9
# Build Documentatation @ https://developer.apple.com/forums/thread/737894
10
10
11
11
XCODE_PROVISIONING_PROFILES_DIR=" $HOME /Library/Developer/Xcode/UserData/Provisioning Profiles"
12
+ ALT_PROVISIONING_PROFILES_DIR=" $HOME /Library/MobileDevice/Provisioning Profiles"
13
+ mkdir -p " $XCODE_PROVISIONING_PROFILES_DIR "
14
+ mkdir -p " $ALT_PROVISIONING_PROFILES_DIR "
12
15
CODE_SIGN_IDENTITY=" Developer ID Application: Coder Technologies Inc (4399GN35BJ)"
13
16
14
17
APP_PROVISIONING_PROFILE_ID=$( get_uuid " $APP_PROF_PATH " )
@@ -17,7 +20,9 @@ RELEASE_BUILD=true
17
20
18
21
# Install Provisioning Profiles
19
22
cp " $APP_PROF_PATH " " ${XCODE_PROVISIONING_PROFILES_DIR} /${APP_PROVISIONING_PROFILE_ID} .provisionprofile"
23
+ cp " $APP_PROF_PATH " " ${ALT_PROVISIONING_PROFILES_DIR} /${APP_PROVISIONING_PROFILE_ID} .provisionprofile"
20
24
cp " $EXT_PROF_PATH " " ${XCODE_PROVISIONING_PROFILES_DIR} /${EXT_PROVISIONING_PROFILE_ID} .provisionprofile"
25
+ cp " $EXT_PROF_PATH " " ${ALT_PROVISIONING_PROFILES_DIR} /${EXT_PROVISIONING_PROFILE_ID} .provisionprofile"
21
26
22
27
export APP_PROVISIONING_PROFILE_ID
23
28
export EXT_PROVISIONING_PROFILE_ID
You can’t perform that action at this time.
0 commit comments