mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Small fix in the error output (#26004)
So I noticed this when doing integration tests:
Failed to copy file Could not find a part of the path
and this change turns it into:
Failed to copy file: Could not find a part of the path
I also moved something out of the exception handling.
This commit is contained in:
@@ -78,10 +78,10 @@ Function Copy-File($src, $dest) {
|
||||
if ($src_checksum -ne $dest_checksum) {
|
||||
try {
|
||||
Copy-Item -Path $src -Destination $dest -Force -WhatIf:$check_mode
|
||||
$result.changed = $true
|
||||
} catch {
|
||||
Fail-Json $result "Failed to copy file $($_.Exception.Message)"
|
||||
Fail-Json $result "Failed to copy file: $($_.Exception.Message)"
|
||||
}
|
||||
$result.changed = $true
|
||||
}
|
||||
|
||||
# Verify the file we copied is the same
|
||||
|
||||
Reference in New Issue
Block a user