Don't invoke exit in the bash completion script.

This commit is contained in:
Username404 2021-03-24 11:59:29 +01:00
parent 545c7b4b0d
commit 79c44c5e0e
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ _ybconAutoComplete() {
else
case "${previous}" in
-h | --help | --version )
exit 0 ;;
return 0 ;;
esac
complete -f -o plusdirs -X '!*.ybcon' ybcon
fi