We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19d59e0 commit b14cc0dCopy full SHA for b14cc0d
ci/script/functions.sh
@@ -85,7 +85,10 @@ function run_spec_suite_for {
85
echo "Running specs for $1"
86
pushd ../$1
87
unset BUNDLE_GEMFILE
88
- bundle_install_flags=`cat .travis.yml | grep bundler_args | tr -d '"' | grep -o " .*"`
+ bundle_install_flags=""
89
+ if [ -e .travis.yml ]; then
90
+ bundle_install_flags=`cat .travis.yml | grep bundler_args | tr -d '"' | grep -o " .*"`
91
+ fi
92
travis_retry eval "(unset RUBYOPT; exec bundle install $bundle_install_flags)"
93
run_specs_and_record_done
94
popd
0 commit comments