From 34fb20f67c7bdca2b1321a40f2fd558f9a34d866 Mon Sep 17 00:00:00 2001 From: "Shawn O. Pearce" Date: Wed, 30 Nov 2011 13:41:02 -0800 Subject: Revert "Default repo manifest settings in git config" This reverts commit ee1c2f5717fcc137ab887a4aae8a08d50a539b9a. This breaks a lot of buildbot systems. Rolling it back for now until we can understand what the breakage was and how to fix it. --- repo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'repo') diff --git a/repo b/repo index 0b20a9b8..2a13af5b 100755 --- a/repo +++ b/repo @@ -28,7 +28,7 @@ if __name__ == '__main__': del magic # increment this whenever we make important changes to this script -VERSION = (1, 14) +VERSION = (1, 13) # increment this if the MAINTAINER_KEYS block is modified KEYRING_VERSION = (1,0) @@ -154,7 +154,7 @@ def _Init(args): """Installs repo by cloning it over the network. """ opt, args = init_optparse.parse_args(args) - if args: + if args or not opt.manifest_url: init_optparse.print_usage() sys.exit(1) -- cgit v1.2.3-54-g00ecf