Skip to content

Commit de6deb7

Browse files
authored
DS-2633 Fixing double dollar sign syntax error in buildspec (#1150)
# Task Branch Pull Request **<https://nhsd-jira.digital.nhs.uk/browse/DS-2633>** ## Description of Changes Fixing double dollar sign syntax error in buildspec file for development pipeline and task env codebuild job ## Type of change Delete not appropriate - Bug fix (Fixing double dollar sign syntax error) ## Development Checklist - [x] I have performed a self-review of my own code - [x] Tests have added that prove my fix is effective or that my feature works (Integration tests) - [x] I have updated Dependabot to include my changes (if applicable) ## Code Reviewer Checklist - [x] I can confirm the changes have been tested or approved by a tester
1 parent 900ae7d commit de6deb7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

infrastructure/stacks/development-and-deployment-tools/batch-buildspecs/build-deploy-test-release-batch-jobs/deploy-cloudwatch-queries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ phases:
3131
- echo AWS_ACCOUNT=$AWS_ACCOUNT
3232
- echo ENVIRONMENT=$ENVIRONMENT
3333
- echo PROFILE=$PROFILE
34-
- eval "$$(make -s populate-tagging-variables)"
34+
- eval "$(make -s populate-tagging-variables)"
3535
- make deploy-cloudwatch-queries VERSION=$CODEBUILD_RESOLVED_SOURCE_VERSION PROFILE=$PROFILE ENVIRONMENT=$ENVIRONMENT

infrastructure/stacks/development-and-deployment-tools/buildspecs/deploy-full-environment-buildspec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ phases:
3030
- echo AWS_ACCOUNT=$AWS_ACCOUNT
3131
- echo ENVIRONMENT=$ENVIRONMENT
3232
- echo PROFILE=$PROFILE
33-
- eval "$$(make -s populate-tagging-variables)"
33+
- eval "$(make -s populate-tagging-variables)"
3434
- make terraform-apply-auto-approve STACKS=api-key,shared-resources,application,blue-green-link VERSION=$CODEBUILD_RESOLVED_SOURCE_VERSION PROFILE=$PROFILE ENVIRONMENT=$ENVIRONMENT TF_CLI_ARGS="-parallelism=30"

0 commit comments

Comments
 (0)