View | Details | Raw Unified | Return to bug 25686
Collapse All | Expand All

(-)a/hasher/hsh-sh-functions.in (-4 / +3 lines)
Lines 628-640 print_uris() Link Here
628
{
628
{
629
	local out
629
	local out
630
	local options='-q -y -o RPM::PM=external -o Dir::Bin::rpm=hsh-rpmi-print-files'
630
	local options='-q -y -o RPM::PM=external -o Dir::Bin::rpm=hsh-rpmi-print-files'
631
	if ! out="$("$aptbox/apt-get" $options install -- "$@" 2>&1)"; then
631
	if ! out="$("$aptbox/apt-get" $options install -- "$@" 2>&1 | tee /dev/stderr)"; then
632
		printf %s\\n "$out" >&2
632
		fatal 'Failed to calculate package file list.'
633
		fatal 'failed to calculate package file list.'
634
	fi
633
	fi
635
634
636
	printf %s "$out" |LC_ALL=C grep '^/.*\.rpm$' || [ $? -eq 1 ]
635
	printf %s "$out" |LC_ALL=C grep '^/.*\.rpm$' || [ $? -eq 1 ]
637
	verbose 'calculated package file list.'
636
	verbose 'Calculated package file list.'
638
}
637
}
639
638
640
parse_xauth_entry()
639
parse_xauth_entry()

Return to bug 25686