newapkbuild: minor bugfix in is_uri()

This commit is contained in:
Natanael Copa 2010-07-07 18:27:09 +00:00
parent 8bf6428c8f
commit b6dbb5afed
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@ is_url() {
case "$1" in
http://*|ftp://*) return 0;;
esac
return 1
}