Trim spaces from the package list before using

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
Aaron Griffin 2008-10-20 23:40:43 -05:00
parent d8f4565b89
commit c8df7387dd

View File

@ -36,6 +36,9 @@ while getopts 'i:P:p:a:t:fvh' arg; do
esac
done
#trim spaces
PKGLIST="$(echo $PKGLIST)"
shift $(($OPTIND - 1))
echo "ARGS: $@"