Skip to content

Commit

Permalink
Replace checks for TextWrangler with BBEdit
Browse files Browse the repository at this point in the history
TextWrangler by Barebones Software has been sunset, but they have made BBEdit free now.
  • Loading branch information
tthoma24 committed Feb 11, 2019
1 parent 999f34b commit 30e6caa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup/swc-installation-test-2.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class DependencyError (Exception):
('*', '*', 'sublime-text'): 'http://www.sublimetext.com/2',
('*', '*', 'sympy'): 'http://docs.sympy.org/dev/install.html',
('Darwin', '*', 'textmate'): 'http://macromates.com/',
('Darwin', '*', 'textwrangler'): 'http://www.barebones.com/products/textwrangler/download.html',
('Darwin', '*', 'bbedit'): 'http://www.barebones.com/products/bbedit/download.html',
('*', '*', 'tornado'): 'http://www.tornadoweb.org/',
('*', '*', 'vim'): 'http://www.vim.org/download.php',
('Darwin', '*', 'xcode'): 'https://developer.apple.com/xcode/',
Expand Down Expand Up @@ -808,9 +808,9 @@ def _program_files_paths(*args):
([_os.path.join(_ROOT_PATH, 'Applications', 'TextMate.app',
'Contents', 'version.plist')],
'textmate', 'TextMate'),
([_os.path.join(_ROOT_PATH, 'Applications', 'TextWrangler.app',
([_os.path.join(_ROOT_PATH, 'Applications', 'BBEdit.app',
'Contents', 'version.plist')],
'textwrangler', 'TextWrangler'),
'bbedit', 'BBEdit'),
([_os.path.join(_ROOT_PATH, 'Applications', 'Safari.app',
'Contents', 'version.plist')],
'safari', 'Safari'),
Expand Down Expand Up @@ -948,7 +948,7 @@ def _program_files_paths(*args):
'notepad++',
'sublime-text',
'textmate',
'textwrangler',
'bbedit',
'other-editor', # last because it requires user interaction
)),
('virtual-browser', 'web browser', (
Expand Down

0 comments on commit 30e6caa

Please sign in to comment.