Ignore unspecified backup archives

This commit is contained in:
Manuel Thalmann 2024-08-28 00:22:38 +02:00
parent 45487af3de
commit 63e357d193

View file

@ -76,6 +76,7 @@ $null = New-Module {
[string[]] $Exclude [string[]] $Exclude
) )
if ($env:BACKUP_ARCHIVE) {
[List[string]] $argumentList = @(); [List[string]] $argumentList = @();
$dir = New-TemporaryDirectory; $dir = New-TemporaryDirectory;
$targetPath = & $pathResolver @PSBoundParameters; $targetPath = & $pathResolver @PSBoundParameters;
@ -119,6 +120,7 @@ $null = New-Module {
Remove-Item -Recurse -Force $dir; Remove-Item -Recurse -Force $dir;
} }
}
<# <#
.SYNOPSIS .SYNOPSIS
@ -145,6 +147,7 @@ $null = New-Module {
[string[]] $ArgumentList [string[]] $ArgumentList
) )
if ($env:BACKUP_ARCHIVE) {
$dir = New-TemporaryDirectory; $dir = New-TemporaryDirectory;
$sourcePath = & $pathResolver @PSBoundParameters; $sourcePath = & $pathResolver @PSBoundParameters;
$filePath = Join-Path $dir $sourcePath; $filePath = Join-Path $dir $sourcePath;
@ -156,4 +159,5 @@ $null = New-Module {
Remove-Item -Recurse -Force $dir; Remove-Item -Recurse -Force $dir;
} }
}
}; };