Fix win_robocopy flags argument (#19603)

pull/18946/head
Kevin Houdebert 8 years ago committed by John R Barker
parent 45c57618b3
commit 2ffb705049

@ -85,7 +85,9 @@ if ($flags -eq $null) {
}
}
Else {
$robocopy_opts += $flags
ForEach ($f in $flags.split(" ")) {
$robocopy_opts += $f
}
}
Set-Attr $result.win_robocopy "purge" $purge

Loading…
Cancel
Save