-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,21 +3,21 @@ | |
# Exit early if something goes wrong | ||
set -e | ||
|
||
# if [ -f "./.gitmodules" ]; then | ||
# echo ".gitmodules file exists. Modifying URLs..." | ||
# account_id=$(echo $CODESTAR_CONNECTION_ARN | cut -d':' -f5) | ||
# connection_id=$(echo $CODESTAR_CONNECTION_ARN | cut -d'/' -f2) | ||
# git_clone_base_url="https://codestar-connections.eu-west-2.amazonaws.com/git-http/$account_id/eu-west-2/$connection_id/uktrade" | ||
if [ -f "./.gitmodules" ]; then | ||
echo ".gitmodules file exists. Modifying URLs..." | ||
account_id=$(echo $CODESTAR_CONNECTION_ARN | cut -d':' -f5) | ||
connection_id=$(echo $CODESTAR_CONNECTION_ARN | cut -d'/' -f2) | ||
git_clone_base_url="https://codestar-connections.eu-west-2.amazonaws.com/git-http/$account_id/eu-west-2/$connection_id/uktrade" | ||
|
||
# git config --global credential.helper '!aws codecommit credential-helper $@' | ||
# git config --global credential.UseHttpPath true | ||
git config --global credential.helper '!aws codecommit credential-helper $@' | ||
git config --global credential.UseHttpPath true | ||
|
||
# sed -i "s|url = [email protected]:uktrade/\(.*\).git|url = $git_clone_base_url/\1.git|g" ./.gitmodules | ||
sed -i "s|url = [email protected]:uktrade/\(.*\).git|url = $git_clone_base_url/\1.git|g" ./.gitmodules | ||
|
||
# git submodule update --init --remote --recursive | ||
git submodule update --init --remote --recursive | ||
|
||
# else | ||
# echo ".gitmodules file does not exist. No URLs to update." | ||
# fi | ||
else | ||
echo ".gitmodules file does not exist. No URLs to update." | ||
fi | ||
|
||
# Add commands below to run as part of the pre_build phase |