From 9e2bea993efc7d2c165e2e4abc236c69c0505b0b Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Mon, 17 Jul 2023 08:45:35 +0200 Subject: [PATCH] add missing rm --- usr/lib/archboot/basic-common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/basic-common.sh b/usr/lib/archboot/basic-common.sh index 5959a3ab9..e1f04099e 100644 --- a/usr/lib/archboot/basic-common.sh +++ b/usr/lib/archboot/basic-common.sh @@ -22,7 +22,7 @@ _dialog() { _abort() { if _dialog --yesno "Abort$(echo ${_TITLE} | cut -d '|' -f3) ?" 5 45; then [[ -e "${_ANSWER}-running" ]] && rm "${_ANSWER}-running" - [[ -e "${_ANSWER}" ]] && ${_ANSWER} + [[ -e "${_ANSWER}" ]] && rm ${_ANSWER} clear exit 1 else