OLD | NEW |
1 #!/bin/sh | 1 #!/bin/sh |
2 | 2 |
3 ## repo default configuration | 3 ## repo default configuration |
4 ## | 4 ## |
5 REPO_URL='https://git.chromium.org/git/external/repo' | 5 REPO_URL='http://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 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
732 try: | 732 try: |
733 os.execv(repo_main, me) | 733 os.execv(repo_main, me) |
734 except OSError as e: | 734 except OSError as e: |
735 print >>sys.stderr, "fatal: unable to start %s" % repo_main | 735 print >>sys.stderr, "fatal: unable to start %s" % repo_main |
736 print >>sys.stderr, "fatal: %s" % e | 736 print >>sys.stderr, "fatal: %s" % e |
737 sys.exit(148) | 737 sys.exit(148) |
738 | 738 |
739 | 739 |
740 if __name__ == '__main__': | 740 if __name__ == '__main__': |
741 main(sys.argv[1:]) | 741 main(sys.argv[1:]) |
OLD | NEW |