diff options
author | Patrick Wright <patrick@getchef.com> | 2016-02-16 10:57:05 -0700 |
---|---|---|
committer | Patrick Wright <patrick@getchef.com> | 2016-02-16 10:57:05 -0700 |
commit | 01147dc69cf1f62b03400e3292c5d7c5d5d7e95f (patch) | |
tree | 01be9b83f1a5114a55faa2312b94cb403dbc5188 /ci | |
parent | 61906bae0a660759ed59339bb8ae49521c25c636 (diff) | |
download | chef-01147dc69cf1f62b03400e3292c5d7c5d5d7e95f.tar.gz |
remove final cleanup from ci verify scripts to return proper exit codepw/fix_verify_sh
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/verify-chef.bat | 4 | ||||
-rwxr-xr-x | ci/verify-chef.sh | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/ci/verify-chef.bat b/ci/verify-chef.bat index 7354a91208..1f839c91a6 100755 --- a/ci/verify-chef.bat +++ b/ci/verify-chef.bat @@ -58,7 +58,3 @@ IF "%PIPELINE_NAME%" == "chef-fips" ( set CHEF_FIPS=1 ) call bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o %WORKSPACE%\test.xml -f documentation spec/functional - -REM ; Destroy everything at the end for good measure. -RMDIR /S /Q %TEMP% -MKDIR %TEMP% diff --git a/ci/verify-chef.sh b/ci/verify-chef.sh index 572f15ee04..b637dfaf7f 100755 --- a/ci/verify-chef.sh +++ b/ci/verify-chef.sh @@ -113,6 +113,3 @@ else fi sudo env PATH=$PATH TERM=xterm CHEF_FIPS=$CHEF_FIPS bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o $WORKSPACE/test.xml -f documentation spec/functional fi - -# Clean up the tmpdir at the end for good measure. -rm -rf $TMPDIR |