Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/pull
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-03 22:23:18 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-03 22:23:18 (GMT)
commit38720618e2382cae228b8b839203b26ab344a26c (patch)
treebf0c8a130466c5088376ee7a5b061e6049159bfc /commands/pull
parentf5169db238558ab5ac70dc98e82fb8e7581cc4c0 (diff)
Check system before setting up the environ
Diffstat (limited to 'commands/pull')
-rwxr-xr-xcommands/pull4
1 files changed, 0 insertions, 4 deletions
diff --git a/commands/pull b/commands/pull
index 7314278..4e3ca8f 100755
--- a/commands/pull
+++ b/commands/pull
@@ -6,7 +6,6 @@ import sys
import common
from devbot import build
-from devbot import system
parser = argparse.ArgumentParser()
parser.add_argument("module", nargs="?", help="name of the module to pull")
@@ -18,8 +17,5 @@ if args.module:
if not build.pull_one(args.module):
sys.exit(1)
else:
- if not system.check(lazy=True):
- sys.exit(1)
-
if not build.pull():
sys.exit(1)