Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1004)

Side by Side Diff: repo

Issue 7779014: Update repo.git URL from broken kernel.org to Chromium hosted. (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/depot_tools/
Patch Set: Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 2
3 ## repo default configuration 3 ## repo default configuration
4 ## 4 ##
5 REPO_URL='git://android.git.kernel.org/tools/repo.git' 5 REPO_URL='http://git.chromium.org/external/repo.git'
6 REPO_REV='stable' 6 REPO_REV='stable'
7 7
8 # Copyright (C) 2008 Google Inc. 8 # Copyright (C) 2008 Google Inc.
9 # 9 #
10 # Licensed under the Apache License, Version 2.0 (the "License"); 10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License. 11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at 12 # You may obtain a copy of the License at
13 # 13 #
14 # http://www.apache.org/licenses/LICENSE-2.0 14 # http://www.apache.org/licenses/LICENSE-2.0
15 # 15 #
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 try: 593 try:
594 os.execv(main, me) 594 os.execv(main, me)
595 except OSError, e: 595 except OSError, e:
596 print >>sys.stderr, "fatal: unable to start %s" % main 596 print >>sys.stderr, "fatal: unable to start %s" % main
597 print >>sys.stderr, "fatal: %s" % e 597 print >>sys.stderr, "fatal: %s" % e
598 sys.exit(148) 598 sys.exit(148)
599 599
600 600
601 if __name__ == '__main__': 601 if __name__ == '__main__':
602 main(sys.argv[1:]) 602 main(sys.argv[1:])
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698