From 9a3172b831147fa877ab769acfc6b21d4ad0e95d Mon Sep 17 00:00:00 2001 From: root Date: Fri, 5 Jun 2026 23:00:45 +0200 Subject: [PATCH] Fix: unbound variable _UNBUFFERED () --- update-Nitrov3.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-Nitrov3.sh b/update-Nitrov3.sh index 4d42793..9aea9b6 100755 --- a/update-Nitrov3.sh +++ b/update-Nitrov3.sh @@ -5,7 +5,7 @@ set -euo pipefail # Real-time output via pseudo-terminal (unbuffer from expect) # Dit forceert line-buffered output voor ALLE commands, ook in web interfaces -if [ -z "$_UNBUFFERED" ] && command -v unbuffer &> /dev/null; then +if [ -z "${_UNBUFFERED:-}" ] && command -v unbuffer &> /dev/null; then export _UNBUFFERED=1 exec unbuffer bash "$0" "$@" fi