From fa4cc1a0ad7a7ecb6d2a06599c5e7a41c7ca17c0 Mon Sep 17 00:00:00 2001 From: Joel Klimont Date: Fri, 10 Feb 2023 14:29:13 +0100 Subject: [PATCH] fixed syntax error in postinstallscript --- postinstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postinstall.sh b/postinstall.sh index 4f6f94e..b37be50 100755 --- a/postinstall.sh +++ b/postinstall.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -if [ $(uname -m) == "x86_64" ]; then +if [ "$(uname -m)" = "x86_64" ]; then echo "Not running on RPi - Skipping postinstall" exit 0 fi