From 37de9df7c048dc20522ccacaebf7e898ff20b96e Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Thu, 16 Aug 2012 22:59:46 -0400 Subject: 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 --- scripts/pkgdelta.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pkgdelta.sh.in b/scripts/pkgdelta.sh.in index 3d80261f..08835ac8 100644 --- a/scripts/pkgdelta.sh.in +++ b/scripts/pkgdelta.sh.in @@ -215,6 +215,6 @@ if ! type xdelta3 &>/dev/null; then exit 1 fi -create_xdelta "${args[@]}" +create_xdelta "$@" # vim: set ts=2 sw=2 noet: -- cgit v1.2.3-24-g4f1b