Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit bc6be35

Browse files
committed
Fix a YAML syntax error in .travis.yml
In a list item, multiple lines are concatenated. As a result, a comment anywhere in the item runs until the end of the item, effectively commenting everything that follows it, such as in: section: - line1 line2 # line3 line4 The item in this section will have a value of "line1 line2". Signed-off-by: David Wagner <[email protected]>
1 parent c89d208 commit bc6be35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ script:
6868
CTEST_OUTPUT_ON_FAILURE=1 make ExperimentalTest ExperimentalMemCheck &&
6969
make install )
7070
- ( cd tools/clientSimulator &&
71-
# TODO: install the generated .deb instead of using ../install
72-
# This would permit to test the packaging
71+
echo "TODO - install the generated .deb instead of using ../install."
72+
"This would permit to test the packaging" &&
7373
cmake -DCMAKE_INSTALL_PREFIX=../install . &&
7474
make &&
7575
make install )

0 commit comments

Comments
 (0)