From 8cee17f3f705b65b0dfe2a803065420039ee9883 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 27 Aug 2023 17:07:37 +0200 Subject: [PATCH] =?UTF-8?q?allow=20/home=20on=20/=20in=20quicksetu=C3=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- usr/lib/archboot/installer/quicksetup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/quicksetup.sh b/usr/lib/archboot/installer/quicksetup.sh index f9470faa6..2bd8f958e 100644 --- a/usr/lib/archboot/installer/quicksetup.sh +++ b/usr/lib/archboot/installer/quicksetup.sh @@ -280,7 +280,7 @@ _autoprepare() { _ROOTDEV_NUM="$((_DEV_NUM+1))" _DEV_NUM="${_ROOTDEV_NUM}" while [[ -z "${_ROOTDEV_SET}" ]]; do - _dialog --title " / in MiB " --inputbox "Minimum value is 2000 | Disk space left: $((_DISK_SIZE-350))M | 0=Skip /home partition. Use ${_DISK_SIZE} for /" 8 55 "${_ROOT_SIZE}" 2>"${_ANSWER}" || return 1 + _dialog --title " / in MiB " --inputbox "Minimum value is 2000 | Disk space left: $((_DISK_SIZE-350))M\n0=Skip /home partition and use ${_DISK_SIZE} for /" 8 55 "${_ROOT_SIZE}" 2>"${_ANSWER}" || return 1 _ROOTDEV_SIZE=$(cat "${_ANSWER}") if [[ "${_ROOTDEV_SIZE}" == 0 ]]; then _ROOTDEV_SET=1