diff options
author | Shawn O. Pearce <sop@google.com> | 2011-11-30 13:41:02 -0800 |
---|---|---|
committer | Shawn O. Pearce <sop@google.com> | 2011-11-30 13:41:02 -0800 |
commit | 34fb20f67c7bdca2b1321a40f2fd558f9a34d866 (patch) | |
tree | b3f9f06b115d2d52aa01c6deda8a3f3c3af345c2 /repo | |
parent | ecff4f17b08f791466b73d935c772de57f2257e6 (diff) | |
download | git-repo-34fb20f67c7bdca2b1321a40f2fd558f9a34d866.tar.gz |
Revert "Default repo manifest settings in git config"v1.7.8.1
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.
Diffstat (limited to 'repo')
-rwxr-xr-x | repo | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,7 +28,7 @@ if __name__ == '__main__': | |||
28 | del magic | 28 | del magic |
29 | 29 | ||
30 | # increment this whenever we make important changes to this script | 30 | # increment this whenever we make important changes to this script |
31 | VERSION = (1, 14) | 31 | VERSION = (1, 13) |
32 | 32 | ||
33 | # increment this if the MAINTAINER_KEYS block is modified | 33 | # increment this if the MAINTAINER_KEYS block is modified |
34 | KEYRING_VERSION = (1,0) | 34 | KEYRING_VERSION = (1,0) |
@@ -154,7 +154,7 @@ def _Init(args): | |||
154 | """Installs repo by cloning it over the network. | 154 | """Installs repo by cloning it over the network. |
155 | """ | 155 | """ |
156 | opt, args = init_optparse.parse_args(args) | 156 | opt, args = init_optparse.parse_args(args) |
157 | if args: | 157 | if args or not opt.manifest_url: |
158 | init_optparse.print_usage() | 158 | init_optparse.print_usage() |
159 | sys.exit(1) | 159 | sys.exit(1) |
160 | 160 | ||