fixed missing slash for json zip

This commit is contained in:
2021-11-24 11:42:09 -05:00
parent e96dc8cd53
commit 2792016c45

View File

@@ -73,7 +73,7 @@ $zipFilename = "Bitwarden Backup $dateTime.zip"
if ($zip) {
Write-Host "Zipping the backup together..."
Compress-Archive -Path $PSScriptRoot\*.csv, $PSScriptRoot*.json, $PSScriptRoot\attachments -DestinationPath "$PSScriptRoot\$zipFilename"
Compress-Archive -Path $PSScriptRoot\*.csv, $PSScriptRoot\*.json, $PSScriptRoot\attachments -DestinationPath "$PSScriptRoot\$zipFilename"
if ($gpg) {
Write-Host "Encrypting the backup zip with your bitwarden password..."