Date: Fri, 11 Sep 2015 20:45:42 +0000 (UTC) From: Devin Teske <dteske@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r287685 - head/usr.sbin/bsdinstall/scripts Message-ID: <201509112045.t8BKjg5u037244@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dteske Date: Fri Sep 11 20:45:41 2015 New Revision: 287685 URL: https://svnweb.freebsd.org/changeset/base/287685 Log: Remove use of return outside of function MFC after: 3 days X-MFC-to: stable/10 Modified: head/usr.sbin/bsdinstall/scripts/docsinstall Modified: head/usr.sbin/bsdinstall/scripts/docsinstall ============================================================================== --- head/usr.sbin/bsdinstall/scripts/docsinstall Fri Sep 11 20:43:14 2015 (r287684) +++ head/usr.sbin/bsdinstall/scripts/docsinstall Fri Sep 11 20:45:41 2015 (r287685) @@ -159,7 +159,7 @@ for lang in $selected; do docsets="$docsets $lang-freebsd-doc" done -ASSUME_ALWAYS_YES=YES chroot $BSDINSTALL_CHROOT pkg install $docsets || return $FAILURE +ASSUME_ALWAYS_YES=YES chroot $BSDINSTALL_CHROOT pkg install $docsets ################################################################################ # END
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509112045.t8BKjg5u037244>