From dec0189d9726713e79b7ed837739a48d6a7cc3af Mon Sep 17 00:00:00 2001 From: Alvin Schiller <103769832+AlvinSchiller@users.noreply.github.com> Date: Tue, 17 Oct 2023 00:50:54 +0200 Subject: [PATCH] fix home dir --- scripts/installscripts/tests/test_installation.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installscripts/tests/test_installation.sh b/scripts/installscripts/tests/test_installation.sh index 29d1ec6d4..332cfb8cb 100755 --- a/scripts/installscripts/tests/test_installation.sh +++ b/scripts/installscripts/tests/test_installation.sh @@ -8,7 +8,7 @@ INSTALLATION_EXITCODE="${1:-0}" PATHDATA="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" USER_NAME="$(whoami)" -HOME_DIR=$(getent passwd "$CURRENT_USER" | cut -d: -f6) +HOME_DIR=$(getent passwd "$USER_NAME" | cut -d: -f6) tests=0 failed_tests=0