Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/clean
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-25 23:04:31 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-25 23:04:31 (GMT)
commit91ea798d316865135643a569799f96f98de68ef8 (patch)
tree0c22e6dee60cc9c72d7e35c3c153640f3f78c2eb /commands/clean
parenta0b65ee79f9f5abdee931aa02a3018cb308f6c51 (diff)
Split state out of build script so we can reuse it
Diffstat (limited to 'commands/clean')
-rwxr-xr-xcommands/clean6
1 files changed, 6 insertions, 0 deletions
diff --git a/commands/clean b/commands/clean
index 5fdee2f..fcfe193 100755
--- a/commands/clean
+++ b/commands/clean
@@ -7,9 +7,15 @@ import common
from devbot import build
from devbot import config
+from devbot import environ
+from devbot import state
+from devbot import config
common.setup()
build.clean()
+environ.clean()
+state.clean()
+config.clean()
os.chdir(config.logs_dir)