diff options
Diffstat (limited to 'usr.sbin/bsdinstall/scripts/jail')
| -rwxr-xr-x | usr.sbin/bsdinstall/scripts/jail | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bsdinstall/scripts/jail b/usr.sbin/bsdinstall/scripts/jail index 3b1b2ee98fff..e4238ac0a687 100755 --- a/usr.sbin/bsdinstall/scripts/jail +++ b/usr.sbin/bsdinstall/scripts/jail @@ -45,7 +45,7 @@ user_env_vars="BSDINSTALL_DISTSITE DISTRIBUTIONS"  # error [$msg]  #  # Display generic error message when a script fails. An optional message -# argument can preceed the generic message. User is given the choice of +# argument can precede the generic message. User is given the choice of  # restarting the installer or exiting.  #  error() { @@ -79,7 +79,7 @@ distbase() {  	: ${DISTRIBUTIONS="base.txz"}; export DISTRIBUTIONS  	if [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then -		DISTMENU=`cut -f 4,5,6 $BSDINSTALL_DISTDIR/MANIFEST | grep -v -e ^kernel -e ^base` +		DISTMENU=$(cut -f 1,5,6 $BSDINSTALL_DISTDIR/MANIFEST | grep -v -e ^kernel -e ^base | sed -E 's/\.txz//g')  		if [ ! "$nonInteractive" == "YES" ]  		then  | 
