From 38a70a35d012e8236f9e6d8716c504408f7f8780 Mon Sep 17 00:00:00 2001 From: Alejandro R Mosteo Date: Wed, 13 May 2020 13:38:46 +0200 Subject: [PATCH] Don't err out in autocompletion script (#405) This may break other people's scripts. Just bail out. --- scripts/alr-completion.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/alr-completion.bash b/scripts/alr-completion.bash index c9aae839..a85532b3 100755 --- a/scripts/alr-completion.bash +++ b/scripts/alr-completion.bash @@ -2,7 +2,7 @@ if ! builtin type -P alr &>/dev/null; then echo alr must be in PATH for completion to work - exit 1 + return fi # Commands -- 2.39.5