Skip to content

Commit a296fbe

Browse files
authored
chore: fix buildspec that read env vars incorrectly (#229)
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 040f304 commit a296fbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildspec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ phases:
2222
- make build-image
2323
- make publish-dockerhub
2424
- |
25-
if [ ARCH_SUFFIX = "amd64" ]; then
25+
if [ $ARCH_SUFFIX = "amd64" ]; then
2626
make tag-latest
2727
make publish-dockerhub-latest
2828
fi

0 commit comments

Comments
 (0)