From 9803c988e93edafd9178f700ac40665431d770ca Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 30 Jun 2023 21:43:39 +0200 Subject: [PATCH] fix abort dialog --- usr/bin/archboot-locale.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/bin/archboot-locale.sh b/usr/bin/archboot-locale.sh index b96fe3c52..b37fa8b6e 100755 --- a/usr/bin/archboot-locale.sh +++ b/usr/bin/archboot-locale.sh @@ -45,7 +45,7 @@ _set_locale() { _LOCALE=$(cat ${_ANSWER}) if [[ "${_LOCALE}" == "OTHER" ]]; then #shellcheck disable=SC2086 - _dialog --menu "Select A System Wide Locale:" 18 35 12 ${_OTHER_LOCALES} 2>${_ANSWER} || abort + _dialog --menu "Select A System Wide Locale:" 18 35 12 ${_OTHER_LOCALES} 2>${_ANSWER} || _abort _LOCALE=$(cat ${_ANSWER}) fi }