index : asp32 | |
Archlinux32 fork of asp - obsolete | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <deep42thought@noreply.example.org> | 2018-11-08 11:50:49 +0000 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2018-11-08 11:50:49 +0000 |
commit | 89a50089759b73965e0dddaa5846b1c9a2ad69b3 (patch) | |
tree | 31ebde00bc2a9f1b12d968fb7cd65159cdd098d3 | |
parent | b4d09b4a2900c2de3efe6ad6970ab744dcf24437 (diff) | |
parent | 0d977c473ebdde81c869cbae4e97b3671920e2bb (diff) |
-rw-r--r-- | shell/bash-completion | 6 |
diff --git a/shell/bash-completion b/shell/bash-completion index b09b8ed..3eebbd3 100644 --- a/shell/bash-completion +++ b/shell/bash-completion @@ -40,11 +40,11 @@ _asp() { word=${COMP_WORDS[i]} if in_array "$word" ${verbs[ALL_PACKAGES]}; then verb=$word - comps=$(ASP_GIT_QUIET=1 \asp list-all | sed 's,.*/,,') + comps=$(ASP_GIT_QUIET=1 \asp32 list-all | sed 's,.*/,,') break elif in_array "$word" ${verbs[LOCAL_PACKAGES]}; then verb=$word - comps=$(ASP_GIT_QUIET=1 \asp list-local | sed 's,.*/,,') + comps=$(ASP_GIT_QUIET=1 \asp32 list-local | sed 's,.*/,,') break elif in_array "$word" ${verbs[PROTO]}; then verb=$word @@ -60,7 +60,7 @@ _asp() { case $verb in show) if (( i < ${#COMP_WORDS[@]} - 2 )); then - comps=$(ASP_GIT_QUIET=1 \asp ls-files "${COMP_WORDS[i+1]}" 2>/dev/null) + comps=$(ASP_GIT_QUIET=1 \asp32 ls-files "${COMP_WORDS[i+1]}" 2>/dev/null) fi ;; '') |