From 6dff198ba1196a2b31274744365a940bb34898a2 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 6 Dec 2018 14:23:24 +1300 Subject: Substitute bad `continue` for `return` --- bash/bash_completion.d/git.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bash') diff --git a/bash/bash_completion.d/git.bash b/bash/bash_completion.d/git.bash index ea5e00cd..c3a4d49c 100644 --- a/bash/bash_completion.d/git.bash +++ b/bash/bash_completion.d/git.bash @@ -3,7 +3,7 @@ # do it all contextually # Requires Bash >=4.0 for COMP_KEY -((BASH_VERSINFO[0] >= 4)) || continue +((BASH_VERSINFO[0] >= 4)) || return # Define and set helper function _git() { -- cgit v1.2.3