Fix typo in gg completions

This commit is contained in:
Ethan Paul 2022-05-24 22:29:58 -04:00
parent 36ce40d718
commit 2d26caba54
Signed by: enpaul
GPG Key ID: 9B6D99E4CFA31867

View File

@ -25,7 +25,7 @@
block: >-
function _gg_completion() {
local cur=${COMP_WORDS[COMP_CWORD]};
COMPREPLY=( $(compgen -W "$(command ls $PROJECT_DIR)" -- $cur) );
COMPREPLY=( $(compgen -W "$(command ls $PROJECTS_DIR)" -- $cur) );
}
complete -F _gg_completion gg