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

Side by Side Diff: repo

Issue 9021045: Revert repo back to an upstream we control (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/depot_tools/
Patch Set: Created 9 years 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='https://code.google.com/p/git-repo/' 5 REPO_URL='https://git.chromium.org/git/external/repo'
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 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 try: 676 try:
677 os.execv(main, me) 677 os.execv(main, me)
678 except OSError, e: 678 except OSError, e:
679 print >>sys.stderr, "fatal: unable to start %s" % main 679 print >>sys.stderr, "fatal: unable to start %s" % main
680 print >>sys.stderr, "fatal: %s" % e 680 print >>sys.stderr, "fatal: %s" % e
681 sys.exit(148) 681 sys.exit(148)
682 682
683 683
684 if __name__ == '__main__': 684 if __name__ == '__main__':
685 main(sys.argv[1:]) 685 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