Spaces:
Runtime error
Runtime error
Update Devine/core/dir.py
Browse files- Devine/core/dir.py +2 -2
Devine/core/dir.py
CHANGED
|
@@ -13,8 +13,8 @@ def dirr():
|
|
| 13 |
os.remove(file)
|
| 14 |
|
| 15 |
if "downloads" not in os.listdir():
|
| 16 |
-
os.mkdir("downloads")
|
| 17 |
if "cache" not in os.listdir():
|
| 18 |
-
os.mkdir("cache")
|
| 19 |
|
| 20 |
LOGGER(__name__).info("Directories Updated.")
|
|
|
|
| 13 |
os.remove(file)
|
| 14 |
|
| 15 |
if "downloads" not in os.listdir():
|
| 16 |
+
os.mkdir("/tmp/downloads")
|
| 17 |
if "cache" not in os.listdir():
|
| 18 |
+
os.mkdir("/tmp/cache")
|
| 19 |
|
| 20 |
LOGGER(__name__).info("Directories Updated.")
|