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:
parent
87f9377b32
commit
37de9df7c0
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Add table
Reference in a new issue