From 1d1d3ebc4b76870040f908c84791ba427a4fdc62 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Fri, 10 Jul 2026 18:36:59 +0000 Subject: [PATCH] armbian_rootenc_setup: retry unmount (bugfix) --- scripts/armbian_rootenc_setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/armbian_rootenc_setup.sh b/scripts/armbian_rootenc_setup.sh index 825f9e2..1d11557 100644 --- a/scripts/armbian_rootenc_setup.sh +++ b/scripts/armbian_rootenc_setup.sh @@ -130,7 +130,7 @@ print_help() { _umount() { for i in 0 1 2 3 4 5 6 7 8 9; do - umount $@ && return + umount $@ && return || true sleep 0.5 done die "umount $@: command failed!"