summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrepo5
1 files changed, 2 insertions, 3 deletions
diff --git a/repo b/repo
index b7d8024f..502bb324 100755
--- a/repo
+++ b/repo
@@ -20,7 +20,7 @@ REPO_REV = 'stable'
20# limitations under the License. 20# limitations under the License.
21 21
22# increment this whenever we make important changes to this script 22# increment this whenever we make important changes to this script
23VERSION = (1, 21) 23VERSION = (1, 22)
24 24
25# increment this if the MAINTAINER_KEYS block is modified 25# increment this if the MAINTAINER_KEYS block is modified
26KEYRING_VERSION = (1, 2) 26KEYRING_VERSION = (1, 2)
@@ -567,8 +567,7 @@ def _Clone(url, local, quiet):
567 '+refs/heads/*:refs/remotes/origin/*') 567 '+refs/heads/*:refs/remotes/origin/*')
568 if _DownloadBundle(url, local, quiet): 568 if _DownloadBundle(url, local, quiet):
569 _ImportBundle(local) 569 _ImportBundle(local)
570 else: 570 _Fetch(url, local, 'origin', quiet)
571 _Fetch(url, local, 'origin', quiet)
572 571
573 572
574def _Verify(cwd, branch, quiet): 573def _Verify(cwd, branch, quiet):