Skip to content

Commit d9482cb

Browse files
committed
Fix docker condition check
1 parent 24b3f2b commit d9482cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ ARG II_SPLIT_FRONTEND=
8888
RUN touch src/*/src/lib.rs
8989
RUN npm ci
9090

91-
RUN if [ -n "$II_SPLIT_FRONTEND" ]; then \
91+
RUN if [ "$II_SPLIT_FRONTEND" = "1" ]; then \
9292
./scripts/build --frontend && \
9393
mv /internet_identity_frontend.wasm.gz /internet_identity.wasm.gz; \
9494
else \

0 commit comments

Comments
 (0)