Changeset 4439 for trunk


Ignore:
Timestamp:
May 26, 2020 9:34:42 AM (3 years ago)
Author:
toby
Message:

bootstrap w/selected binary; update svn switch cmd; save build output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIpath.py

    r4396 r4439  
    539539    cmd = [svn,'switch',URL,fpath,
    540540           '--non-interactive','--trust-server-cert',
    541            '--accept','theirs-conflict','--force']
     541           '--accept','theirs-conflict','--force','-rHEAD']
    542542    if svnVersionNumber(svn) > 1.6: cmd += ['--ignore-ancestry']
    543543    if proxycmds: cmd += proxycmds
    544     if verbose: print(u"Loading files to "+fpath+u"\n  from "+URL)
     544    if verbose:
     545        print(u"Loading files to "+fpath+u"\n  from "+URL)
    545546    s = subprocess.Popen(cmd,stdout=subprocess.PIPE,stderr=subprocess.PIPE)
    546547    out,err = MakeByte2str(s.communicate())
     
    566567        return False
    567568    if verbose:
    568         print('=== Output from svn switch'+(43*'='))
     569        s = '\nsvn command:  '
     570        for i in cmd: s += i + ' '
     571        print(s)
     572        print('\n=== Output from svn switch'+(43*'='))
    569573        print(out.strip())
    570574        print((70*'=')+'\n')
Note: See TracChangeset for help on using the changeset viewer.