Skip to content

Commit

Permalink
fix(build): Fixed paths on s3 deployments (#2335)
Browse files Browse the repository at this point in the history
This PR fixes an incorrect path used in s3 deployments.

# Checklist:
Remove the checklist to signal you've completed it. Enable auto-merge if
the PR is ready to merge.
- [ ] If the pull request requires a cryptography review (e.g.
cryptographic algorithm implementations) I have added the 'crypto' tag.
- [ ] I have reviewed my diff in github, line by line and removed
unexpected formatting changes, testing logs, or commented-out code.
- [ ] Every change is related to the PR description.
- [ ] I have
[linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)
this pull request to relevant issues (if any exist).
  • Loading branch information
PhilWindle authored Sep 15, 2023
1 parent c7f3776 commit 38c7979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-system/scripts/deploy_s3
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ echo "deploy_s3: Project Dir: $PROJECT_DIR"
echo "deploy_s3: Working directory: $PWD"
echo "deploy_s3: Extract dir: $EXTRACT_DIR"

extract_repo $REPOSITORY /usr/src/$(query_manifest projectDir $REPOSITORY)/dest $EXTRACT_DIR
extract_repo $REPOSITORY /usr/src/$(query_manifest relativeProjectDir $REPOSITORY)/dest $EXTRACT_DIR

# So a front-end app can discover it's deploy tag at runtime, we include a file called DEPLOY_TAG in the root.
echo $DEPLOY_TAG > $EXTRACT_DIR/dest/DEPLOY_TAG
Expand Down

0 comments on commit 38c7979

Please sign in to comment.