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/git.bash | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'bash/bash_completion.d/git.bash') diff --git a/bash/bash_completion.d/git.bash b/bash/bash_completion.d/git.bash index 2bee169a..2fd1bb98 100644 --- a/bash/bash_completion.d/git.bash +++ b/bash/bash_completion.d/git.bash @@ -198,11 +198,4 @@ _git() { ;; esac } - -# Defaulting to directory/file completion is important in Git's case; -# bashdefault requires Bash >=3.0 -if ((BASH_VERSINFO[0] >= 3)) ; then - complete -F _git -o bashdefault -o default git -else - complete -F _git -o default git -fi +complete -F _git -o bashdefault -o default git -- cgit v1.2.3