From ca836400d24c9cd71f86a7470b337b7e73846b93 Mon Sep 17 00:00:00 2001 From: Sascha Silbe Date: Sat, 03 Apr 2010 10:25:16 +0000 Subject: don't update (sugar-)jhbuild if help (--help/-h) or no network access (--no-network/-n) was requested --- 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']) -- cgit v0.9.1