mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
win_copy: Fix recursive copy (#23581)
This fixes #23559. This should be backported to v2.3 branch too.
This commit is contained in:
@@ -32,8 +32,9 @@ $original_basename = Get-AnsibleParam -obj $params -name "original_basename" -ty
|
||||
|
||||
$result = @{
|
||||
changed = $false
|
||||
src = $src
|
||||
dest = $dest
|
||||
original_basename = $original_basename
|
||||
src = $src
|
||||
}
|
||||
|
||||
if (($force -eq $false) -and (Test-Path -Path $dest)) {
|
||||
@@ -122,6 +123,9 @@ if ($original_basename) {
|
||||
} catch {
|
||||
Fail-Json $result "Failed to create directory $($dest_folder): $($_.Exception.Message)"
|
||||
}
|
||||
}
|
||||
|
||||
if ((Get-Item -Path $dest -Force).PSIsContainer) {
|
||||
$dest = Join-Path $dest -ChildPath $original_basename
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user