Skip to content

Commit

Permalink
Fix if statement (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Woffenden authored Oct 17, 2024
1 parent 196c43f commit 9f2e106
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform-static-analysis/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ else
fi

# use ECR for Trivy databases
if [[ "$INPUT_USE_TRIVY_ECR_DATABASE" == "true" ]];
if [[ "$INPUT_USE_TRIVY_ECR_DATABASE" == "true" ]]; then
export TRIVY_DB_REPOSITORY="public.ecr.aws/aquasecurity/trivy-db:2"
export TRIVY_JAVA_DB_REPOSITORY="public.ecr.aws/aquasecurity/trivy-java-db:1"
fi
Expand Down

0 comments on commit 9f2e106

Please sign in to comment.