1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02: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:
Dag Wieers 2017-06-24 21:07:23 +02:00 committed by René Moser
parent 21c7fcf9c0
commit 014bcad35b

View file

@ -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