fixed import path
- script was not importing the files in the `/tmp` directory
This commit is contained in:
parent
dc374066d8
commit
5e9ee15855
3 changed files with 12 additions and 5 deletions
5
setup.py
5
setup.py
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue