1
0
Fork 0

fixed import path

- script was not importing the files in the `/tmp` directory
This commit is contained in:
Kim, Jimin 2022-03-15 11:04:28 +09:00
parent dc374066d8
commit 5e9ee15855
3 changed files with 12 additions and 5 deletions

View file

@ -11,6 +11,9 @@ import os
import sys
from shutil import rmtree
# must be synced with `src/__init__.py`
tmp_dir = "/tmp/com.developomp.setup"
def minimal_check():
"""
@ -58,8 +61,6 @@ def minimal_initialization():
print("Cloning git repository")
tmp_dir = "/tmp/com.developomp.setup"
# remove existing files
if os.path.exists(tmp_dir):
rmtree(tmp_dir)