1971864966
break mixed form dialogs in conjunction with the FreeBSD termcap, making the bsdinstall partition editor Add dialog, among other things, completely nonfunctional. This restores dialog 20110707.
12 lines
218 B
Bash
Executable File
12 lines
218 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: dselect,v 1.6 2010/01/13 10:20:03 tom Exp $
|
|
|
|
. ./setup-vars
|
|
|
|
exec 3>&1
|
|
RESULT=`$DIALOG --title "Please choose a directory" "$@" --dselect $HOME/ 14 48 2>&1 1>&3`
|
|
retval=$?
|
|
exec 3>&-
|
|
|
|
. ./report-string
|