Skip to content

Commit

Permalink
#2174: try different comparison in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
cwschilly authored and cz4rs committed Sep 20, 2024
1 parent 427be70 commit 937b780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/docker/ubuntu-gnu-cpp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ ENV PATH=/cmake/bin/:$PATH
ENV LESSCHARSET=utf-8

COPY ./ci/deps/vtk.sh vtk.sh
RUN if test ${vt_tv_enabled} -eq 1; then \
RUN if [ "${vt_tv_enabled}" = "1" ]; then \
chmod +x vtk.sh && \
./vtk.sh 9.3.0 /vtk-build -j4; \
fi
Expand Down

0 comments on commit 937b780

Please sign in to comment.