Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-15 10:00:41 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-15 10:00:41 (GMT)
commite05bf4079ee41ec5a00b985bb2a45d4b2c32a2d5 (patch)
tree99a44d84d17a904ea5aef6049f6ee8f47af124f6 /commands
parent6d24aa66ebb5231ead47bf5f0924908b76acd622 (diff)
Separate build and runtime state
Otherwise it becomes problematic to support multiple profiles
Diffstat (limited to 'commands')
-rw-r--r--commands/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/common.py b/commands/common.py
index 81a4da1..7ada2fe 100644
--- a/commands/common.py
+++ b/commands/common.py
@@ -21,7 +21,7 @@ def setup():
source_dir=os.path.join(base_dir, "source"),
build_dir=os.path.join(base_dir, "build"),
commands_dir=os.path.join(base_dir, "commands"),
- home_dir=os.path.join(base_dir, "home"),
+ state_dir=os.path.join(base_dir, "state"),
prefs_path=os.path.join(base_dir, "prefs"),
logs_dir=logs_dir,
relocatable=relocatable)