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:
parent
21c7fcf9c0
commit
014bcad35b
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue