Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/build.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-25 21:40:43 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-25 21:40:43 (GMT)
commitc405fe38b82f87c85345d9436731f43efed4ba73 (patch)
tree14daf4bdb7f5d2e4f1e55bbf32192ec04834cbdb /devbot/build.py
parentc9fa11dc5483cc571e855cf0d825944ae3d5c91c (diff)
Setup the environment after cleaning
Otherwise we miss directories which are created in environ.
Diffstat (limited to 'devbot/build.py')
-rw-r--r--devbot/build.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/devbot/build.py b/devbot/build.py
index 2e9ee44..7b4d64a 100644
--- a/devbot/build.py
+++ b/devbot/build.py
@@ -44,14 +44,14 @@ def pull():
return True
def build(full=False):
- environ.setup()
-
- _ccache_reset()
-
if full or state.full_build_is_required():
state.clean_build_state()
clean()
+ environ.setup()
+
+ _ccache_reset()
+
state.full_build_touch()
for module in config.load_modules():