Changeset 5413 for install/g2pkg/src
- Timestamp:
- Nov 27, 2022 10:43:12 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.