summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authordanielsdeleo <dan@opscode.com>2012-11-21 13:14:50 -0800
committerdanielsdeleo <dan@opscode.com>2012-11-21 13:41:39 -0800
commit229606ac439e61aeb6b60649fb0a5b3f81b8f07f (patch)
tree9ea52d65ba0ca4cd5770851db3bc3f36699326b4 /ci
parent2d69e943e18760b08a280cac55f02e1edca0b6e8 (diff)
downloadchef-229606ac439e61aeb6b60649fb0a5b3f81b8f07f.tar.gz
don't use binstubs, overwrites real bin/ files
Diffstat (limited to 'ci')
-rwxr-xr-xci/jenkins_run_tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/jenkins_run_tests.sh b/ci/jenkins_run_tests.sh
index ce8e1934c9..5dab6ebd92 100755
--- a/ci/jenkins_run_tests.sh
+++ b/ci/jenkins_run_tests.sh
@@ -5,5 +5,5 @@ export PATH=/usr/local/bin:$PATH
ruby -v;
# remove the Gemfile.lock and try again if bundler fails.
# This should take care of Gemfile changes that result in "bad" bundles without forcing us to rebundle every time
-bundle install --binstubs --path vendor/bundle || ( rm Gemfile.lock && bundle install --binstubs --path vendor/bundle )
-bin/rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec;
+bundle install --path vendor/bundle || ( rm Gemfile.lock && bundle install --path vendor/bundle )
+bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec;