[pacman-dev] [PATCH] pkgdelta: pass correct args to create_delta
18 Aug
2012
18 Aug
'12
8:35 p.m.
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> --- I probably broke this. 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 3d80261..08835ac 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: -- 1.7.11.5
4522
Age (days ago)
4522
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dave Reisner