Skip to content
This repository has been archived by the owner on Nov 9, 2024. It is now read-only.

Commit

Permalink
Bash Completion: R2API Uninstall Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Foldex committed Sep 29, 2020
1 parent 194a688 commit 91813ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion completions/bash/r2mod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ _r2mod()
;;
un | uninstall)
[[ ! -d "$PLUGINS_DIR" ]] && return 1
COMPREPLY=( $(cd "$PLUGINS_DIR" && compgen -d -X "@(R2API|bbepis-BepInExPack-*)" -- "$cur") )
COMPREPLY=( $(cd "$PLUGINS_DIR" && compgen -d -X "@(*R2API*|bbepis-BepInExPack-*)" -- "$cur") )
return 0
;;
*)
Expand Down

0 comments on commit 91813ef

Please sign in to comment.