Remove deploy and server commands from bash completion

This commit is contained in:
dinesh 2015-04-05 17:50:12 +05:30
parent b1247355dc
commit d55ae53513
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ _scrapy_completion() {
;;
*)
if [ $COMP_CWORD -eq 1 ]; then
commands="check crawl deploy edit fetch genspider list parse runspider server settings shell startproject version view"
commands="check crawl edit fetch genspider list parse runspider settings shell startproject version view"
COMPREPLY=(${COMPREPLY[@]:-} $(compgen -W "$commands" -- "$cmd"))
fi
;;