From 42abcb35ab005a978489fb3f6991d5ec9b4141b7 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sat, 15 Jul 2023 15:04:38 +0200 Subject: [PATCH] add --no-cance --- usr/lib/archboot/installer/mountpoints.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/mountpoints.sh b/usr/lib/archboot/installer/mountpoints.sh index 50b2ce951..1ee0949d4 100644 --- a/usr/lib/archboot/installer/mountpoints.sh +++ b/usr/lib/archboot/installer/mountpoints.sh @@ -57,7 +57,7 @@ _select_filesystem() { command -v mkfs.ext3 &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} ext3 Ext3" command -v mkfs.jfs &>"${_NO_LOG}" && _FSOPTS="${_FSOPTS} jfs JFS" #shellcheck disable=SC2086 - _dialog --menu "Select a filesystem for ${_DEV}:" 16 50 13 ${_FSOPTS} 2>"${_ANSWER}" || return 1 + _dialog --no-cancel --menu "Select a filesystem for ${_DEV}:" 16 50 13 ${_FSOPTS} 2>"${_ANSWER}" || return 1 _FSTYPE=$(cat "${_ANSWER}") }