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.
pull/26060/merge
Dag Wieers 7 years ago committed by René Moser
parent 21c7fcf9c0
commit 014bcad35b

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

Loading…
Cancel
Save