From e3ba5ec61561811caf2651e27c511d395739b77c Mon Sep 17 00:00:00 2001 From: Jason Lunn Date: Mon, 4 Oct 2021 15:45:26 +0000 Subject: [PATCH] Add trailing backslashes at end of line consistently --- ruby/travis-test.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ruby/travis-test.sh b/ruby/travis-test.sh index 1f6aea57c5..edca986fff 100755 --- a/ruby/travis-test.sh +++ b/ruby/travis-test.sh @@ -14,9 +14,9 @@ test_version() { which ruby && \ git clean -f && \ gem install --no-document bundler && bundle && \ - rake test && - rake gc_test && - cd ../conformance && make test_jruby && + rake test && \ + rake gc_test && \ + cd ../conformance && make test_jruby && \ cd ../ruby/compatibility_tests/v3.0.0 && ./test.sh" else bash --login -c \ @@ -24,10 +24,10 @@ test_version() { which ruby && \ git clean -f && \ gem install --no-document bundler -v 1.17.3 && bundle && \ - rake test && - rake gc_test && - cd ../conformance && make ${RUBY_CONFORMANCE} && - cd ../ruby/compatibility_tests/v3.0.0 && + rake test && \ + rake gc_test && \ + cd ../conformance && make ${RUBY_CONFORMANCE} && \ + cd ../ruby/compatibility_tests/v3.0.0 && \ cp -R ../../lib lib && ./test.sh" fi }