From 7af4ee85d372e63b5289583d39085bc06de2385c Mon Sep 17 00:00:00 2001 From: Stephan Wendel Date: Sat, 25 Jun 2022 00:19:14 +0200 Subject: [PATCH] fix: used wrong condition Signed-off-by: Stephan Wendel --- tools/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/install.sh b/tools/install.sh index 8ecaafc..d40e073 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -128,7 +128,7 @@ function import_config { fi ## rpi os bullseye - if [ "$(uname -m)" != "aarch64" ] && + if [ "$(uname -m)" == "aarch64" ] && [ "$(get_os_version ubuntu)" != "0" ] && [ -f "tools/config.bullseye" ]; then # shellcheck disable=SC1091