import: remove google code support

Google code is dead and going read-only. import is just a helper program, and
we don't want to help people add apps from google code anymore. Apps should
move to other hosting sites.
This commit is contained in:
Daniel Martí 2015-08-18 16:26:12 -07:00
parent 261ed09d7c
commit e8a7a56d2e
2 changed files with 5 additions and 83 deletions

View file

@ -169,10 +169,10 @@ __complete_checkupdates() {
}
__complete_import() {
opts="-u -s -r -q"
lopts="--url --subdir --repo --rev --quiet"
opts="-u -s -q"
lopts="--url --subdir --rev --quiet"
case "${prev}" in
-u|--url|-r|--repo|-s|--subdir|--rev) return 0;;
-u|--url|-s|--subdir|--rev) return 0;;
esac
__complete_options
}