Skip to content

Commit 772729b

Browse files
committed
fix: In POSIX sh, == in place of = is undefined
1 parent bfe6095 commit 772729b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dist/18-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN set -eux; \
2626
&& ARCH=$(uname -m) && \
2727
if [ "$ARCH" = "x86_64" ]; then \
2828
curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
29-
elif [ "$ARCH" == "aarch64" ]; then \
29+
elif [ "$ARCH" = "aarch64" ]; then \
3030
curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
3131
fi \
3232
&& chmod +x /bin/pnpm \

dist/19-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN set -eux; \
2626
&& ARCH=$(uname -m) && \
2727
if [ "$ARCH" = "x86_64" ]; then \
2828
curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
29-
elif [ "$ARCH" == "aarch64" ]; then \
29+
elif [ "$ARCH" = "aarch64" ]; then \
3030
curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
3131
fi \
3232
&& chmod +x /bin/pnpm \

dist/lts-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN set -eux; \
2626
&& ARCH=$(uname -m) && \
2727
if [ "$ARCH" = "x86_64" ]; then \
2828
curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
29-
elif [ "$ARCH" == "aarch64" ]; then \
29+
elif [ "$ARCH" = "aarch64" ]; then \
3030
curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
3131
fi \
3232
&& chmod +x /bin/pnpm \

src/Dockerfiles/all/Dockerfile.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN set -eux; \
2626
&& ARCH=$(uname -m) && \
2727
if [ "$ARCH" = "x86_64" ]; then \
2828
curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-x64" -o /bin/pnpm; \
29-
elif [ "$ARCH" == "aarch64" ]; then \
29+
elif [ "$ARCH" = "aarch64" ]; then \
3030
curl -fsSL "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-arm64" -o /bin/pnpm; \
3131
fi \
3232
&& chmod +x /bin/pnpm \

0 commit comments

Comments
 (0)