From 6e4dfece98d0733d4e6f392b1c0e9016eb6e64b5 Mon Sep 17 00:00:00 2001 From: Dieter Plaetinck Date: Sun, 28 Jun 2009 20:35:49 +0200 Subject: bugfixes for better mountpoint picker --- src/core/libs/lib-ui-interactive.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/core/libs/lib-ui-interactive.sh b/src/core/libs/lib-ui-interactive.sh index 9f49502..dab18dc 100644 --- a/src/core/libs/lib-ui-interactive.sh +++ b/src/core/libs/lib-ui-interactive.sh @@ -415,9 +415,9 @@ interactive_filesystem () then default= [ -n "$fs_mountpoint" ] && default="$fs_mountpoint" - ask_option "$default" "Select the mountpoint" "Select a mountpoint for $part" required / 'root' /boot 'files for booting' /etc 'config files' /home 'home directories' /tmp 'temporary files' Custom 'enter a custom mountpoint' || return 1 - [ "$ANSWER_OPTION" == custom ] && ask_string "Enter the custom mountpoint for $part" "$default" || return 1 - fs_mountpoint=$ANSWER_STRING + ask_option "$default" "Select the mountpoint" "Select a mountpoint for $part" required / 'root' /boot 'files for booting' /etc 'config files' /home 'home directories' /tmp 'temporary files' custom 'enter a custom mountpoint' || return 1 + fs_mountpoint=$ANSWER_OPTION + [ "$ANSWER_OPTION" == custom ] && ask_string "Enter the custom mountpoint for $part" "$default" && fs_mountpoint=$ANSWER_STRING || return 1 fi # ask label, if relevant -- cgit v1.2.3-54-g00ecf