Set a default path for backup artifacts

This commit is contained in:
Manuel Thalmann 2024-08-28 00:38:20 +02:00
parent 16271566f2
commit fd514b1415

View file

@ -16,6 +16,10 @@ $null = New-Module {
$result = "System";
}
if (-not $Path) {
$Path = "Files";
}
$result = Join-Path $result $Path;
return $result;
};