From 56e4ba6c3aa00673913b2d21d98b2cfbb9d4cc58 Mon Sep 17 00:00:00 2001 From: Dominik Lammers Date: Thu, 14 Dec 2023 10:41:48 +0100 Subject: [PATCH] fix: Add `overrideExistingProject` to backup call There was an issue that projects containing a white space char were not copied properly. The flag `-overrideExistingProject` works as workaround. It has no negative effects in our contexts since we copy into an empty directory. --- t4c/backup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t4c/backup.py b/t4c/backup.py index 39788527..43df1848 100644 --- a/t4c/backup.py +++ b/t4c/backup.py @@ -51,6 +51,8 @@ def run_importer_script() -> None: OUTPUT_FOLDER, "-archiveProject", "false", + "-overrideExistingProject", + "true", "-importCommitHistoryAsJson", os.getenv("INCLUDE_COMMIT_HISTORY", "true"), "-includeCommitHistoryChanges",