Allow optional params to makechrootpkg (to actually accept extra makepkg args)

This commit is contained in:
Jason Chu 2007-11-04 14:56:43 -08:00
parent e782cbd00b
commit bced48cecd
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ usage ()
exit 1
}
while getopts 'c:h' arg; do
while getopts ':c:h' arg; do
case "${arg}" in
c) chrootdir="$OPTARG" ;;
h|?) usage ;;