Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorMax <michal@naiman.eu>2017-05-03 01:07:49 +0300
committerMax <michal@naiman.eu>2017-05-03 01:07:49 +0300
commitbe330d4a92195d5b00e05dd499573a273b117df0 (patch)
tree9b00e89b9c14629807a48daf09504f2639eb27a7 /Tools
parent8309f433d1adcfc6b05a961f986f3c949b7c4f85 (diff)
small fix
Diffstat (limited to 'Tools')
-rw-r--r--Tools/Verification/DuplicatiVerify.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/Verification/DuplicatiVerify.ps1 b/Tools/Verification/DuplicatiVerify.ps1
index 48cc8b371..799ec7367 100644
--- a/Tools/Verification/DuplicatiVerify.ps1
+++ b/Tools/Verification/DuplicatiVerify.ps1
@@ -99,7 +99,7 @@ if(Test-Path $FileOrDir -PathType Leaf) {
Get-ChildItem $FileOrDir -Filter "*-verification.json" |
Foreach-Object {
$files++
- Write-Host "Verifying file: $_.Name"
+ Write-Host "Verifying file: $($_.Name)"
$errorCount = $errorCount + $(Verify-Hashes -filename $_.FullName)
}