We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ea2c3e commit 43c78dfCopy full SHA for 43c78df
1 file changed
packages/cli/src/commands/backup.ts
@@ -599,6 +599,12 @@ export async function runBackup(args: BackupArgs): Promise<void> {
599
}
600
601
602
+ console.log(`Backup complete: ${archivePath}`);
603
+ } finally {
604
+ rmSync(stagingDir, { recursive: true, force: true });
605
+ }
606
+}
607
+
608
export async function runBackupSecrets(): Promise<void> {
609
const home = homedir();
610
const backupDir = join(home, ".tps", "backups");
0 commit comments