pkgdelta: pass correct args to create_delta

Somewhere in the arg parse refactoring, the args array went away and we
simply stashed our remaining parameters as positionals. Fix this up so
that pkgdelta doesn't mysteriously hang in read_pkginfo().

Signed-off-by: Dave Reisner <dreisner@archlinux.org>
This commit is contained in:
Dave Reisner 2012-08-16 22:59:46 -04:00 committed by Dan McGee
parent 87f9377b32
commit 37de9df7c0

View file

@ -215,6 +215,6 @@ if ! type xdelta3 &>/dev/null; then
exit 1 exit 1
fi fi
create_xdelta "${args[@]}" create_xdelta "$@"
# vim: set ts=2 sw=2 noet: # vim: set ts=2 sw=2 noet: