comparison: install.py
install.py
- changeset 2428
- 11e6e63a89d0
- parent 2423
- bf4e888d72ab
- child 2480
- 30477cebf808
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 |