Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'devbot/build.py')
-rw-r--r--devbot/build.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/devbot/build.py b/devbot/build.py
index 95652b5..c1a1756 100644
--- a/devbot/build.py
+++ b/devbot/build.py
@@ -53,8 +53,8 @@ def pull(lazy=False):
def build(full=False):
if full or state.full_build_is_required():
- state.clean(build_only=True)
- clean()
+ from devbot import clean
+ clean.clean(build_only=True)
state.full_build_touch()
@@ -95,8 +95,6 @@ def distribute():
def clean():
- print "\n= Clean =\n"
-
print "* Emptying install directory"
_empty_dir(config.install_dir)