comparison: install.py
install.py
- branch
- 5_3_x
- changeset 2429
- a68c882ad6cc
- parent 2422
- 21509a6de6e0
- child 2482
- 2822be40a366
equal
deleted
inserted
replaced
69 Exit the install script. |
69 Exit the install script. |
70 """ |
70 """ |
71 global currDir |
71 global currDir |
72 |
72 |
73 if sys.platform.startswith("win"): |
73 if sys.platform.startswith("win"): |
74 input("Press enter to continue...") |
74 try: |
|
75 input("Press enter to continue...") |
|
76 except EOFError: |
|
77 pass |
75 |
78 |
76 os.chdir(currDir) |
79 os.chdir(currDir) |
77 |
80 |
78 sys.exit(rcode) |
81 sys.exit(rcode) |
79 |
82 |