Skip to content

Commit 0b0d68f

Browse files
committed
ci(dockerhub): fix docker hub autobuild
1 parent e260e4b commit 0b0d68f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

csv/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
awk --version # gawk

0 commit comments

Comments
 (0)