From fceec7bea01b035ee3ca1c9fa02f62a7f5e66c38 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 1 Jan 2013 07:46:48 -0500 Subject: [PATCH] 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. --- swc-installation-test-2.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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', -- 2.26.2