8000 .travis.yml: fix YAML parse error · github/ruby@2be1cf4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2be1cf4

Browse files
committed
.travis.yml: fix YAML parse error
`[` is a meta character in YAML. `- [` starts an array, so it should end with `]`; but it was not. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 58d7444 commit 2be1cf4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
3C92
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,9 @@ before_script:
356356
- chmod u-w ..
357357
- $SETARCH make -s $JOBS && make install
358358
- ccache --show-stats
359-
- [ -z "${GEMS_FOR_TEST}" ] || $RUBY_PREFIX/bin/gem install --no-document $GEMS_FOR_TEST
359+
- |-
360+
[ -z "${GEMS_FOR_TEST}" ] ||
361+
$RUBY_PREFIX/bin/gem install --no-document $GEMS_FOR_TEST
360362
361363
script:
362364
- $SETARCH make -s test TESTOPTS="${TESTOPTS=$JOBS -q --tty=no}"

0 commit comments

Comments
 (0)
0