Fix incorrect backup path

This commit is contained in:
Manuel Thalmann 2023-07-29 21:19:57 +02:00
parent 3125cd823e
commit dfc86f5b30

View file

@ -16,7 +16,7 @@ class Context {
[string] BackupRoot() {
if (-not $this.RootDir)
{
return Join-Path $this.ProjectRoot() $this.BackupName;
return Join-Path $this.ProjectRoot() "backup" $this.BackupName;
}
else
{