Changeset 1532 for install/bootstrap.py
- Timestamp:
- Oct 22, 2014 3:42:27 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
install/bootstrap.py
r1358 r1532 61 61 print 'Unidentifed platform -- you may need to run scons on fsource files' 62 62 63 cmds = ( 64 ([svn, 'co', home+ 'trunk/', gsaspath, '--non-interactive', '--trust-server-cert'],'loading GSAS-II'), 65 ) 66 67 for cmd,msg in cmds: 68 print 70*'*' 69 print msg + ' from ' + cmd[2] 70 for item in cmd: print item, 71 print "" 63 cmd = [svn, 'co', home+ 'trunk/', gsaspath, '--non-interactive', '--trust-server-cert'] 64 msg = 'loading GSAS-II' 65 66 print 70*'*' 67 print msg + ' from ' + cmd[2] 68 for item in cmd: print item, 69 print "" 70 p = subprocess.call(cmd) 71 if p: 72 print 'subversion returned an error; Retrying...' 73 cmd = [svn, 'co', home+ 'trunk/', gsaspath] 72 74 p = subprocess.call(cmd) 73 75
Note: See TracChangeset
for help on using the changeset viewer.