Skip to content

Commit

Permalink
#32: fix syntax in shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Jul 23, 2024
1 parent 8d336b2 commit a63a8e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/test_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ cat /opt/build/vt-tv/Testing/Temporary/LastTest.log
[ -f "/opt/src/vt-tv/output/test-render/ccm_example0.png" ] && cp "/opt/src/vt-tv/output/test-render/ccm_example0.png" /tmp/artifacts/

# coverage reporting
if [[ $VT_TV_COVERAGE_ENABLED=="ON" ]]; then
if [[ $VT_TV_COVERAGE_ENABLED == "ON" ]]; then
pushd /opt/src/vt-tv/output
lcov --capture --directory /opt/build/vt-tv --output-file lcov_vt-tv_test.info
lcov --remove lcov_vt-tv_test.info -o lcov_vt-tv_test_no_deps.info '*/lib/*' '/usr/include/*' '*/vtk/*' '*/tests/*'
Expand Down

0 comments on commit a63a8e6

Please sign in to comment.