win_copy: Add missing check_mode fix (#31469)

* Add missing check_mode fix

* Refactor conditional to use the one embedded in Remove-Item
pull/31491/head
Vyronas Tsingaras 7 years ago committed by Dag Wieers
parent 1c9bffe248
commit 5bf9f271b3

@ -76,7 +76,7 @@ Function Copy-File($source, $dest) {
}
if (Test-Path -Path $dest -PathType Leaf) {
Remove-Item -Path $dest -Force -Recurse | Out-Null
Remove-Item -Path $dest -Force -Recurse -WhatIf:$check_mode | Out-Null
$diff += "-$dest`n"
}

Loading…
Cancel
Save