fix: used wrong condition

Signed-off-by: Stephan Wendel <me@stephanwe.de>
This commit is contained in:
Stephan Wendel
2022-06-25 00:19:14 +02:00
parent 9d9f07b5f9
commit 7af4ee85d3

View File

@@ -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