Changeset 3934
- Timestamp:
- Apr 25, 2019 6:20:40 PM (5 years ago)
- Location:
- install/g2complete
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
install/g2complete/post-link.bat
r3910 r3934 2 2 set "python=%PREFIX%\python.exe" 3 3 set "updatescript=%PREFIX%\GSASII\bootstrap.py" 4 REM "install" the GSAS-II package (create shortcuts, byte-compile...) 4 5 "%python%" "%updatescript%" --nonet 5 "%python%" "%updatescript%" 6 REM Now try to update to latest GSAS-II version (will fail if no network) 7 "%python%" "%updatescript%" --noinstall 6 8 pause 7 9 set errorlevel=0 -
install/g2complete/post-link.sh
r3910 r3934 2 2 echo "Complete installation GSAS-II and update from APS subversion server if on network" 3 3 echo $PREFIX/bin/python 4 # "install" the GSAS-II package (create shortcuts, byte-compile...) 4 5 $PREFIX/bin/python $PREFIX/GSASII/bootstrap.py --nonet 5 $PREFIX/bin/python $PREFIX/GSASII/bootstrap.py 6 # Now try to update to latest GSAS-II version (will fail if no network) 7 $PREFIX/bin/python $PREFIX/GSASII/bootstrap.py --noinstall -
install/g2complete/src/bootstrap.py
r3930 r3934 270 270 val = '' 271 271 if key: 272 print('key=',key)273 272 val = os.environ[key].strip() 274 print('val=',val)275 273 if val: 276 274 if val[-1] == '/': … … 404 402 sys.exit() 405 403 406 if allBinaries and skipDownloadSteps:404 if allBinaries and not skipDownloadSteps: 407 405 print('Loading all binaries with command...') 408 406 if not GSASIIpath.svnSwitchDir('AllBinaries','',g2home+ 'Binaries/',None,True):
Note: See TracChangeset
for help on using the changeset viewer.