From 5282690e0f634a5f83107ba878fe62cbbb347408 Mon Sep 17 00:00:00 2001 From: "Badretdin, Azat" Date: Mon, 18 Apr 2022 04:55:25 -0400 Subject: [PATCH] typo, omitted flag; JIRA: PGAPX-1005 --- scripts/pgap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pgap.py b/scripts/pgap.py index 3ae4b8e..fa6d035 100755 --- a/scripts/pgap.py +++ b/scripts/pgap.py @@ -659,7 +659,7 @@ def update(self): docker_thread.start() threads.append(docker_thread) # precreate the directory where the tarfile will be unloaded. - os.makedirs(f"{self.install_dir}/input-{self.use_version}/uniColl_path") + os.makedirs(f"{self.install_dir}/input-{self.use_version}/uniColl_path", exist_ok=True) self.install_data(threads) genomes_thread = threading.Thread(target = self.install_test_genomes) genomes_thread.start()