fixed: win_copy failure from a VirtualBox share to a local path (#33576)

pull/33654/head
Alexey Shumkin 7 years ago committed by Jordan Borean
parent dd041e6f72
commit f13656782a

@ -87,14 +87,6 @@ Function Copy-File($source, $dest) {
}
$diff += "+$dest`n"
# make sure we set the attributes accordingly
if (-not $check_mode) {
$source_file = Get-Item -Path $source -Force
$dest_file = Get-Item -Path $dest -Force
$dest_file.Attributes = $source_file.Attributes
$dest_file.SetAccessControl($source_file.GetAccessControl())
}
$result.changed = $true
}
@ -119,13 +111,6 @@ Function Copy-Folder($source, $dest) {
New-Item -Path $dest -ItemType Container -WhatIf:$check_mode | Out-Null
$diff += "+$dest\`n"
$result.changed = $true
if (-not $check_mode) {
$source_folder = Get-Item -Path $source -Force
$dest_folder = Get-Item -Path $source -Force
$dest_folder.Attributes = $source_folder.Attributes
$dest_folder.SetAccessControl($source_folder.GetAccessControl())
}
}
$child_items = Get-ChildItem -Path $source -Force

Loading…
Cancel
Save