Skip to content

Commit 4062ac4

Browse files
committed
ci(gh-actions): fix docker hub autobuild
1 parent 69de691 commit 4062ac4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aws-cli/docker-compose.test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ services:
77
command: |
88
sh -c '
99
set -euo pipefail
10-
if [ $(id -u) -ne 1000 ]; then
10+
# Use $$ to prevent interpolation
11+
if [ $$(id -u) -ne 1000 ]; then
1112
exit 1
1213
fi
1314
aws --version # awscli

0 commit comments

Comments
 (0)