# Comment out any entries you don't need
CHECKS = [
# Shell
- 'bash',
+ 'virtual-shell',
# Editors
'virtual-editor',
# Browsers
for command,long_name,minimum_version in [
+ ('sh', 'Bourne Shell', None),
+ ('ash', 'Almquist Shell', None),
('bash', 'Bourne Again Shell', None),
+ ('csh', 'C Shell', None),
+ ('ksh', 'KornShell', None),
+ ('dash', 'Debian Almquist Shell', None),
+ ('tcsh', 'TENEX C Shell', None),
+ ('zsh', 'Z Shell', None),
('easy_install', 'Setuptools easy_install', None),
('git', 'Git', (1, 8, 0)),
('hg', 'Mercurial', (2, 0, 0)),
for name,dependencies in [
+ ('virtual-shell', (
+ 'sh',
+ 'ash',
+ 'bash',
+ 'csh',
+ 'ksh',
+ 'dash',
+ 'tcsh',
+ 'zsh',
+ )),
('virtual-editor', (
'emacs',
'xemacs',