OLD | NEW |
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://android.git.kernel.org/tools/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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
587 os.execv(main, me) | 587 os.execv(main, me) |
588 except OSError, e: | 588 except OSError, e: |
589 print >>sys.stderr, "fatal: unable to start %s" % main | 589 print >>sys.stderr, "fatal: unable to start %s" % main |
590 print >>sys.stderr, "fatal: %s" % e | 590 print >>sys.stderr, "fatal: %s" % e |
591 sys.exit(148) | 591 sys.exit(148) |
592 | 592 |
593 | 593 |
594 if __name__ == '__main__': | 594 if __name__ == '__main__': |
595 main(sys.argv[1:]) | 595 main(sys.argv[1:]) |
596 | 596 |
OLD | NEW |