From da4e6a80a24bc1002e06b0b4a386254a5d5cb050 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 30 Nov 2018 13:21:50 +1300 Subject: Drop support for Bash <= 3.0 This allows removing a fair bit of boilerplate checking for the availability of `-o bashdefault` for the `complete` builtin, and greatly simplifies the minimum version check. --- bash/bash_completion.d/chgrp.bash | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'bash/bash_completion.d/chgrp.bash') diff --git a/bash/bash_completion.d/chgrp.bash b/bash/bash_completion.d/chgrp.bash index d047f97f..5e93ccee 100644 --- a/bash/bash_completion.d/chgrp.bash +++ b/bash/bash_completion.d/chgrp.bash @@ -11,10 +11,4 @@ _chgrp() { COMPREPLY[${#COMPREPLY[@]}]=$group done < <(compgen -A group -- "${COMP_WORDS[COMP_CWORD]}") } - -# bashdefault requires Bash >=3.0 -if ((BASH_VERSINFO[0] >= 3)) ; then - complete -F _chgrp -o bashdefault -o default chgrp -else - complete -F _chgrp -o default chgrp -fi +complete -F _chgrp -o bashdefault -o default chgrp -- cgit v1.2.3