Changeset 3680 for trunk/makeBat.py
- Timestamp:
- Oct 17, 2018 12:57:25 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/makeBat.py
r3679 r3680 62 62 fp.write("@REM created by run of bootstrap.py on {:%d %b %Y %H:%M}\n".format( 63 63 datetime.datetime.now())) 64 activate = "call "+os.path.join(os.path.split(gsaspath)[0],'Scripts','activate')64 activate = os.path.join(os.path.split(gsaspath)[0],'Scripts','activate') 65 65 print(activate) 66 66 if os.path.exists(activate): 67 67 print('adding activate to .bat file') 68 activate = os.path.realpath(activate) + '\n'68 activate = "call "+os.path.realpath(activate) + '\n' 69 69 else: 70 70 print('activate not found')
Note: See TracChangeset
for help on using the changeset viewer.