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 343af73 commit 57be0c2Copy full SHA for 57be0c2
.expeditor/run_windows_tests.ps1
@@ -1,5 +1,13 @@
1
$ErrorActionPreference="stop"
2
3
+Write-Host "Manually clearing the chef-test-kitchen-enterprise cache"
4
+if (Test-Path "C:/workdir/vendor/bundle/ruby/3.1.0/cache/bundler/git/chef-test-kitchen-enterprise-dba8545c33365a2bffe55f9cb935af5b46709af2") {
5
+ Remove-Item -Recurse -Force "C:/workdir/vendor/bundle/ruby/3.1.0/cache/bundler/git/chef-test-kitchen-enterprise-dba8545c33365a2bffe55f9cb935af5b46709af2"
6
+ Write-Host "Cleaned the previous cache"
7
+} else {
8
+ Write-Host "Cache directory does not exist"
9
+}
10
+
11
Write-Host "--- bundle install"
12
13
bundle config --local path vendor/bundle
0 commit comments