Skip to content

Commit 74a2e31

Browse files
committed
Fixed syntax of bash if statement
- derp
1 parent b2934e9 commit 74a2e31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/BinaryBuilder.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN cd node_modules/\@mapbox/node-pre-gyp \
2020
RUN npx node-pre-gyp configure
2121
RUN npx node-pre-gyp build
2222

23-
RUN if [ "$VARIANT" != "alpine" ] then; ldd lib/binding/*/node_sqlite3.node; nm lib/binding/*/node_sqlite3.node | grep "GLIBC_" | c++filt || true ; fi
23+
RUN if [ "$VARIANT" != "alpine" ] ; then ldd lib/binding/*/node_sqlite3.node; nm lib/binding/*/node_sqlite3.node | grep "GLIBC_" | c++filt || true ; fi
2424

2525
RUN npm run test
2626
RUN npx node-pre-gyp package

0 commit comments

Comments
 (0)