-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#330] Update setting teamId in Match updateCodeSingingSettings
Update hard-code teamId in set_up_test_testflight.sh
- Loading branch information
1 parent
fd3b3ba
commit 57a3c1a
Showing
2 changed files
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
readonly CONSTANT_TEAM_ID="<#teamId#>" | ||
readonly CONSTANT_API_KEY_ID="<#API_KEY_ID#>" | ||
readonly CONSTANT_ISSUER_ID="<#ISSUER_ID#>" | ||
readonly CONSTANT_MATCH_REPO="[email protected]:{organization}\/{repo}.git" | ||
|
||
readonly WORKING_DIR=$(cd -P -- "$(dirname -- "$0")" && pwd -P) | ||
MATCH_REPO_ESCAPED=$(echo "${MATCH_REPO//\//\\\/}") | ||
|
||
LC_ALL=C find $WORKING_DIR -type f -exec sed -i "" "s/$CONSTANT_TEAM_ID/4TWS7E2EPE/g" {} + | ||
LC_ALL=C find $WORKING_DIR -type f -exec sed -i "" "s/$CONSTANT_API_KEY_ID/$API_KEY_ID/g" {} + | ||
LC_ALL=C find $WORKING_DIR -type f -exec sed -i "" "s/$CONSTANT_ISSUER_ID/$ISSUER_ID/g" {} + | ||
LC_ALL=C find $WORKING_DIR -type f -exec sed -i "" "s/$CONSTANT_MATCH_REPO/$MATCH_REPO_ESCAPED/g" {} + |