Fix incorrect backup path

This commit is contained in:
Manuel Thalmann 2023-07-29 21:19:57 +02:00
parent 6316b30e84
commit 850b93af05

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
{