Skip to content

Commit fd1498c

Browse files
committed
Fix eof errors
1 parent 25cee52 commit fd1498c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ nginx_pid=$!
4141

4242
SECONDS=0
4343
while [[ ! -f /var/run/nginx.pid ]] && [[ ! -f /var/run/nginx/nginx.pid ]]; do
44-
if (( SECONDS > 30 )); then
44+
if ((SECONDS > 30)); then
4545
echo "couldn't find nginx master process"
4646
exit 1
4747
fi

build/ubi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ COPY ./build/out/gateway /usr/bin/gateway
2727

2828
FROM ngf-ubi-minimal AS goreleaser
2929
ARG TARGETARCH
30-
COPY dist/gateway_linux_$TARGETARCH*/gateway /usr/bin/gateway
30+
COPY dist/gateway_linux_$TARGETARCH*/gateway /usr/bin/gateway

0 commit comments

Comments
 (0)