Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/general.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-07-08 09:38:03 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-07-08 09:38:03 +0000
commit6e6707116ffe23284d834c1c4d167b6913cb62c9 (patch)
tree4ce48d456c2938a28221c29650a2cfbe5fcd0987 /archinstall/lib/general.py
parentc0fb9a948834b6ce188a65980f7c5c9cbbff0820 (diff)
Changed the cache directory to be under ~/.cache instead. Having it in a archinstall folder directly under the users catalogue caused some issues when doing 'import archinstall' when standing in the home directory after trying to uninstall archinstall heh
Diffstat (limited to 'archinstall/lib/general.py')
-rw-r--r--archinstall/lib/general.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py
index b0de39a7..f32f85c7 100644
--- a/archinstall/lib/general.py
+++ b/archinstall/lib/general.py
@@ -93,7 +93,7 @@ class sys_command():#Thread):
self.status = 'starting'
user_catalogue = os.path.expanduser('~')
- self.cwd = f"{user_catalogue}/archinstall/cache/workers/{kwargs['worker_id']}/"
+ self.cwd = f"{user_catalogue}/.cache/archinstall/workers/{kwargs['worker_id']}/"
self.exec_dir = f'{self.cwd}/{os.path.basename(self.cmd[0])}_workingdir'
if not self.cmd[0][0] == '/':