Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Silbe <sascha-org-sugar-git@silbe.org>2010-04-03 10:25:16 (GMT)
committer Sascha Silbe <sascha-org-sugar-git@silbe.org>2010-04-03 10:25:16 (GMT)
commitca836400d24c9cd71f86a7470b337b7e73846b93 (patch)
treead79c06297da794f4c70650413813392d3bccc6f
parentaa119dbcc480cf6fce4e729449b7d8e178118899 (diff)
don't update (sugar-)jhbuild if help (--help/-h) or no network access (--no-network/-n) was requested
-rwxr-xr-xsugar-jhbuild4
1 files changed, 3 insertions, 1 deletions
diff --git a/sugar-jhbuild b/sugar-jhbuild
index 3cdc1a9..41c6e3a 100755
--- a/sugar-jhbuild
+++ b/sugar-jhbuild
@@ -25,7 +25,9 @@ __builtin__.__dict__['SRCDIR'] = jhbuild_dir
args = sys.argv[1:]
if os.path.exists(jhbuild_dir):
- if not args or 'build' in args or 'update' in args:
+ if (not args or 'build' in args or 'update' in args) and not \
+ ('-n' in args or '--help' in args or '-h' in args or
+ '--no-network' in args):
print 'Updating sugar-jhbuild...'
retcode = subprocess.call(['git', 'pull'])