From 1962d291249a6103ca352804127c89a02114679a Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 3 Aug 2023 10:21:51 +0200 Subject: [PATCH] fix parameter --- usr/lib/archboot/update/manage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/update/manage.sh b/usr/lib/archboot/update/manage.sh index b9f5280b9..ec23c9c1e 100644 --- a/usr/lib/archboot/update/manage.sh +++ b/usr/lib/archboot/update/manage.sh @@ -109,7 +109,7 @@ _clean_archboot() { _collect_files() { _KVER=$(_kver "${_RAM}/${_VMLINUZ}") - {_NSPAWN} "${_W_DIR}" /bin/bash -c "umount tmp;archboot-cpio.sh -k ${_KVER} -c ${_CONFIG} -d /tmp" >"${_LOG}" 2>&1 + ${_NSPAWN} "${_W_DIR}" /bin/bash -c "umount tmp;archboot-cpio.sh -k ${_KVER} -c ${_CONFIG} -d /tmp" >"${_LOG}" 2>&1 rm "${_W_DIR}"/.archboot }