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>2018-02-02 15:52:08 +0300
committerMax <michal@naiman.eu>2018-02-02 15:52:08 +0300
commit26d1c52c02663229a4559bf6d333478e03c3141e (patch)
tree46e9239ba6ef51b26c6febdbf301fcc9950732ae /Tools
parentda9014f3638d0e762020bb6a17150865300a02f1 (diff)
sort
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 717e6ef66..8b33d125c 100644
--- a/Tools/Verification/DuplicatiVerify.ps1
+++ b/Tools/Verification/DuplicatiVerify.ps1
@@ -64,7 +64,7 @@ function Verify-Hashes
[int]$errorCount = 0
[int]$checked = 0
[string]$folder = Split-Path -Path $filename
- $remoteVolumes = (Get-Content $filename) -Join "`n" | ConvertFrom-Json | Sort-Object Name
+ $remoteVolumes = $((Get-Content $filename) -Join "`n" | ConvertFrom-Json) | Sort-Object Name
$statsState = @{}
foreach ($n in 0..5) { $statsState.Add($n, $(New-Object PSObject -Property @{SumSize=0;SumCount=0})) }