View | Details | Raw Unified | Return to bug 273148 | Differences between
and this patch

Collapse All | Expand All

(-)b/usr.sbin/bsdinstall/scripts/script (-8 / +6 lines)
Lines 115-127 fi Link Here
115
bsdinstall mount
115
bsdinstall mount
116
116
117
# Fetch missing distribution files, if any
117
# Fetch missing distribution files, if any
118
(
118
exec 3>&1
119
	exec 3>&1
119
export BSDINSTALL_DISTDIR=$(`dirname $0`/fetchmissingdists 2>&1 1>&3)
120
	export BSDINSTALL_DISTDIR=$(`dirname $0`/fetchmissingdists 2>&1 1>&3)
120
FETCH_RESULT=$?
121
	FETCH_RESULT=$?
121
exec 3>&-
122
	exec 3>&-
122
123
	return $FETCH_RESULT
123
[ $FETCH_RESULT -ne 0 ] && error "Could not fetch remote distributions"
124
) || error "Could not fetch remote distributions"
125
124
126
# Unpack distributions
125
# Unpack distributions
127
bsdinstall checksum
126
bsdinstall checksum
128
- 

Return to bug 273148