Differences
This shows you the differences between the selected revisions of the page.
| 2017-10-03 | 2017-10-03 | ||
| code wrapping for new design 6 (martin) | code wrapping for new design 7 (martin) | ||
| Line 247: | Line 247: | ||
| { | { | ||
| Write-Host ("File $remotePath as well as local backup $localPath exist, " + | Write-Host ("File $remotePath as well as local backup $localPath exist, " + | ||
| - | "but remote file is newer ($remoteWriteTime) than local backup ($localWriteTime)") | + | "but remote file is newer ($remoteWriteTime) than " + |
| + | "local backup ($localWriteTime)") | ||
| $download = $True | $download = $True | ||
| } | } | ||
| Line 254: | Line 255: | ||
| Write-Host ( | Write-Host ( | ||
| "File $remotePath as well as local backup $localPath exist, " + | "File $remotePath as well as local backup $localPath exist, " + | ||
| - | "but remote file is not newer ($remoteWriteTime) than local backup ($localWriteTime)") | + | "but remote file is not newer ($remoteWriteTime) than " + |
| + | "local backup ($localWriteTime)") | ||
| $download = $False | $download = $False | ||
| } | } | ||