OLD | NEW |
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 Loading... |
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:]) |
OLD | NEW |