diff options
-rwxr-xr-x | ci/verify-chef.bat | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/ci/verify-chef.bat b/ci/verify-chef.bat index 30918b2900..769d368c92 100755 --- a/ci/verify-chef.bat +++ b/ci/verify-chef.bat @@ -13,13 +13,8 @@ ECHO. REM ; Set the temporary directory to a custom location, and wipe it before REM ; and after the tests run. -IF %TEMP% ( - SET TEMP=%TEMP%\cheftest - SET TMP=%TMP%\cheftest -) ELSE ( - SET TEMP=%TEMP%\cheftest - SET TMP=%TMP%\cheftest -) +SET TEMP=%TEMP%\cheftest +SET TMP=%TMP%\cheftest RMDIR /S /Q %TEMP% MKDIR %TEMP% |