add -Force to folder rm

pull/11616/head
Steven Powell 2021-06-10 10:40:49 -07:00
parent 3b27578610
commit cc89907cca
2 changed files with 2 additions and 2 deletions

View File

@ -17,5 +17,5 @@ $env:KUBECONFIG="$test_home\kubeconfig"
$env:MINIKUBE_HOME="$test_home\.minikube"
# delete in case previous test was unexpectedly ended and teardown wasn't run
rm -r $test_home
rm -r -Force $test_home
mkdir -p $test_home

View File

@ -14,4 +14,4 @@
$test_home="$env:HOMEDRIVE$env:HOMEPATH\minikube-integration"
rm -r $test_home
rm -r -Force $test_home