From: W. Trevor King Date: Tue, 1 Jan 2013 12:46:48 +0000 (-0500) Subject: swc-installation-test-2.py: Sort shells in order of preference X-Git-Url: http://git.tremily.us/?p=swc-setup-installation-test.git;a=commitdiff_plain;h=fceec7bea01b035ee3ca1c9fa02f62a7f5e66c38 swc-installation-test-2.py: Sort shells in order of preference Placing the often-symlinked `sh` at the end of the list. This way if a user has Bash installed, it doesn't show up as plain old Bourne. --- diff --git a/swc-installation-test-2.py b/swc-installation-test-2.py index 61c7e66..705aa04 100755 --- a/swc-installation-test-2.py +++ b/swc-installation-test-2.py @@ -442,14 +442,14 @@ class VirtualDependency (Dependency): for name,dependencies in [ ('virtual-shell', ( - 'sh', - 'ash', 'bash', - 'csh', - 'ksh', 'dash', - 'tcsh', + 'ash', 'zsh', + 'ksh', + 'csh', + 'tcsh', + 'sh', )), ('virtual-editor', ( 'emacs',