Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'devbot/main.py')
-rw-r--r--devbot/main.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/devbot/main.py b/devbot/main.py
index c368ca7..0cac72e 100644
--- a/devbot/main.py
+++ b/devbot/main.py
@@ -9,6 +9,7 @@ from devbot import build
from devbot import state
from devbot import clean
+
def run_build(full=False):
if full or state.full_build_is_required():
clean.clean(build_only=True)
@@ -24,6 +25,8 @@ def run_build(full=False):
if not build.build(full=False):
return False
+ return True
+
def load_plugins():
for loader, name, ispkg in pkgutil.iter_modules(plugins.__path__):