File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2
2
export JRUBY_OPTS=' -X-C' # disable JIT since these processes are so short lived
3
3
SPECS_HAVE_RUN_FILE=specs.out
4
4
MAINTENANCE_BRANCH=` cat maintenance-branch`
5
- BUNDLE_INSTALL_FLAGS=` cat .travis.yml | grep bundler_args | tr -d ' "' | grep -o " .*" `
6
5
7
6
# Taken from:
8
7
# https://github.com/travis-ci/travis-build/blob/e9314616e182a23e6a280199cd9070bfc7cae548/lib/travis/build/script/templates/header.sh#L34-L53
@@ -126,7 +125,8 @@ function run_spec_suite_for {
126
125
echo " Running specs for $1 "
127
126
echo
128
127
unset BUNDLE_GEMFILE
129
- travis_retry bundle install $BUNDLE_INSTALL_FLAGS
128
+ bundle_install_flags=` cat .travis.yml | grep bundler_args | tr -d ' "' | grep -o " .*" `
129
+ travis_retry bundle install $bundle_install_flags
130
130
run_specs_and_record_done
131
131
popd
132
132
fi ;
You can’t perform that action at this time.
0 commit comments