Add method for removing the current stage

This commit is contained in:
Manuel Thalmann 2023-06-29 19:13:17 +02:00
parent 09b031ff92
commit 01d4e3dafa

View file

@ -58,6 +58,10 @@ class Context {
return $this.Get($this.StagePropertyName);
}
[void] RemoveStage() {
$this.Remove($this.StagePropertyName);
}
[string] ArchivePath($name) {
return Join-Path $this.BackupRoot() "$name.7z";
}