Set a default path for backup artifacts

This commit is contained in:
Manuel Thalmann 2024-08-28 00:38:20 +02:00
parent 7a080893bc
commit a6b164da09

View file

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