Changeset 5413
- Timestamp:
- Nov 27, 2022 10:43:12 PM (4 months ago)
- Location:
- install
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
install/bootstrap.py
r4775 r5413 299 299 print('\nAttempting patch for svn Checksum mismatch error\n') 300 300 svncleanup(fpath) 301 cmd = [ 'svn','update','--set-depth','empty',301 cmd = [svn,'update','--set-depth','empty', 302 302 os.path.join(fpath,'bindist')] 303 303 showsvncmd(cmd) … … 314 314 print(err) 315 315 BailOut(msg) 316 cmd = [ 'svn','switch',g2home+'/trunk/bindist',316 cmd = [svn,'switch',g2home+'/trunk/bindist', 317 317 os.path.join(fpath,'bindist'), 318 318 '--non-interactive', '--trust-server-cert', '--accept', 319 319 'theirs-conflict', '--force', '-rHEAD', '--ignore-ancestry'] 320 showsvncmd(cmd) 320 showsvncmd(cmd) 321 321 s = subprocess.Popen(cmd,stdout=subprocess.PIPE,stderr=subprocess.PIPE) 322 322 out,err = MakeByte2str(s.communicate()) 323 323 GSASIIpath.DownloadG2Binaries(g2home,verbose=True) 324 cmd = [ 'svn','update','--set-depth','infinity',324 cmd = [svn,'update','--set-depth','infinity', 325 325 os.path.join(fpath,'bindist')] 326 326 showsvncmd(cmd) -
install/g2complete/src/bootstrap.py
r4775 r5413 299 299 print('\nAttempting patch for svn Checksum mismatch error\n') 300 300 svncleanup(fpath) 301 cmd = [ 'svn','update','--set-depth','empty',301 cmd = [svn,'update','--set-depth','empty', 302 302 os.path.join(fpath,'bindist')] 303 303 showsvncmd(cmd) … … 314 314 print(err) 315 315 BailOut(msg) 316 cmd = [ 'svn','switch',g2home+'/trunk/bindist',316 cmd = [svn,'switch',g2home+'/trunk/bindist', 317 317 os.path.join(fpath,'bindist'), 318 318 '--non-interactive', '--trust-server-cert', '--accept', 319 319 'theirs-conflict', '--force', '-rHEAD', '--ignore-ancestry'] 320 showsvncmd(cmd) 320 showsvncmd(cmd) 321 321 s = subprocess.Popen(cmd,stdout=subprocess.PIPE,stderr=subprocess.PIPE) 322 322 out,err = MakeByte2str(s.communicate()) 323 323 GSASIIpath.DownloadG2Binaries(g2home,verbose=True) 324 cmd = [ 'svn','update','--set-depth','infinity',324 cmd = [svn,'update','--set-depth','infinity', 325 325 os.path.join(fpath,'bindist')] 326 326 showsvncmd(cmd) -
install/g2full/construct.yaml.template
r5412 r5413 15 15 - scipy 16 16 - conda 17 - svn 17 - svn [not win] 18 18 - hdf5 19 19 - h5py -
install/g2pkg/src/bootstrap.py
r4775 r5413 299 299 print('\nAttempting patch for svn Checksum mismatch error\n') 300 300 svncleanup(fpath) 301 cmd = [ 'svn','update','--set-depth','empty',301 cmd = [svn,'update','--set-depth','empty', 302 302 os.path.join(fpath,'bindist')] 303 303 showsvncmd(cmd) … … 314 314 print(err) 315 315 BailOut(msg) 316 cmd = [ 'svn','switch',g2home+'/trunk/bindist',316 cmd = [svn,'switch',g2home+'/trunk/bindist', 317 317 os.path.join(fpath,'bindist'), 318 318 '--non-interactive', '--trust-server-cert', '--accept', 319 319 'theirs-conflict', '--force', '-rHEAD', '--ignore-ancestry'] 320 showsvncmd(cmd) 320 showsvncmd(cmd) 321 321 s = subprocess.Popen(cmd,stdout=subprocess.PIPE,stderr=subprocess.PIPE) 322 322 out,err = MakeByte2str(s.communicate()) 323 323 GSASIIpath.DownloadG2Binaries(g2home,verbose=True) 324 cmd = [ 'svn','update','--set-depth','infinity',324 cmd = [svn,'update','--set-depth','infinity', 325 325 os.path.join(fpath,'bindist')] 326 326 showsvncmd(cmd)
Note: See TracChangeset
for help on using the changeset viewer.