Changeset 4256


Ignore:
Timestamp:
Jan 18, 2020 8:17:51 PM (3 years ago)
Author:
toby
Message:

more testing for offline mac install

File:
1 edited

Legend:

Unmodified
Added
Removed
  • install/g2complete/src/bootstrap.py

    r4242 r4256  
    1818    if 'noinstall' in a.lower():
    1919        skipInstallSteps = True
    20         showWXerror = True
     20        if sys.platform.startswith('win'): showWXerror = True
    2121    elif 'nonet' in a.lower():
    2222        skipDownloadSteps = True
     
    5555def BailOut(msg):
    5656    '''Exit with an error message. Use a GUI to show the error when
    57     showWXerror == True (when --noinstall is specified)
     57    showWXerror == True (on windows when --noinstall is specified)
    5858    '''
    5959    print(msg)
     
    6767        dlg.ShowModal()
    6868        dlg.Destroy()
     69#    else:
     70#        print(msg,file=sys.stderr)
    6971    sys.exit()
    7072       
Note: See TracChangeset for help on using the changeset viewer.