ignore fileexistserror
This commit is contained in:
parent
cd746d915c
commit
e26f8e9304
1 changed files with 5 additions and 1 deletions
|
@ -26,7 +26,11 @@ depends = {
|
|||
enabled_applications = {}
|
||||
|
||||
storage_location = Path(input("Enter the location you want to store databases (/var/tsuite/): ") or "/var/tsuite/")
|
||||
|
||||
try:
|
||||
makedirs(storage_location)
|
||||
except FileExistsError:
|
||||
...
|
||||
|
||||
docker_compose = """version: "3.8"
|
||||
|
||||
|
|
Loading…
Reference in a new issue