File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 11#! /bin/sh
22
33# ci_post_clone.sh
4- # CloudBuildTestbed
4+ # BuildSettingExtractor
55#
66# Created by James Dempsey on 6/10/23.
77#
88
99if [ $CI_XCODE_CLOUD = " TRUE" ]; then
1010
11+ # Get path to xcconfig files in project
12+ configFolderPath = " $CI_PRIMARY_REPOSITORY_PATH /Config"
13+
1114# Write private project configuration file
12- privateProjectConfigPath=" $CI_PRIMARY_REPOSITORY_PATH /Config /PrivateProjectConfig.xcconfig"
15+ privateProjectConfigPath=" $configFolderPath /PrivateProjectConfig.xcconfig"
1316
1417cat > $privateProjectConfigPath << - EOF
1518DEVELOPMENT_TEAM = $CI_TEAM_ID
1619EOF
1720
1821# Write private app configuration file
19- privateAppConfigPath=" $CI_PRIMARY_REPOSITORY_PATH /Config /PrivateAppConfig.xcconfig"
22+ privateAppConfigPath=" $configFolderPath /PrivateAppConfig.xcconfig"
2023
2124cat > $privateAppConfigPath << - EOF
2225PRODUCT_BUNDLE_IDENTIFIER = $CI_BUNDLE_ID
You can’t perform that action at this time.
0 commit comments