Skip to content

Commit a8fd700

Browse files
unnecessary parens
1 parent d69c0c4 commit a8fd700

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
@@ -99,7 +99,7 @@ RUN if [ $CI_BUILD = 2 ]; then \
9999
make -j${CORE_COUNT} > /dev/null 2>&1 || echo "Running make again to see errors..." && make > /tmp/makelog 2>&1 || echo "displaying last N lines..." && tail -n 500 /tmp/makelog; \
100100
elif [ $CI_BUILD ]; then \
101101
echo "Suppressing regular make output for CI environments to decrease log size..."; \
102-
make -j${CORE_COUNT} > /dev/null || $(echo "Running make again to see errors..." && make > /tmp/makelog || echo "displaying last N lines..." && tail -n 500 /tmp/makelog; \
102+
make -j${CORE_COUNT} > /dev/null || echo "Running make again to see errors..." && make > /tmp/makelog || echo "displaying last N lines..." && tail -n 500 /tmp/makelog; \
103103
else \
104104
make -j${CORE_COUNT}; \
105105
fi;

0 commit comments

Comments
 (0)