Skip to content

Commit cc89907

Browse files
committed
add -Force to folder rm
1 parent 3b27578 commit cc89907

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hack/jenkins/windows_integration_setup.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ $env:KUBECONFIG="$test_home\kubeconfig"
1717
$env:MINIKUBE_HOME="$test_home\.minikube"
1818

1919
# delete in case previous test was unexpectedly ended and teardown wasn't run
20-
rm -r $test_home
20+
rm -r -Force $test_home
2121
mkdir -p $test_home

hack/jenkins/windows_integration_teardown.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
$test_home="$env:HOMEDRIVE$env:HOMEPATH\minikube-integration"
1616

17-
rm -r $test_home
17+
rm -r -Force $test_home

0 commit comments

Comments
 (0)