From 5edabe57fb02cab9618aa50a07b69f52af73f208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Sun, 26 Apr 2026 11:17:36 +0200 Subject: [PATCH] Fixed inverted logic. --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 6695139..df9707e 100755 --- a/deploy.sh +++ b/deploy.sh @@ -30,7 +30,7 @@ compatibility_check() { echo "\n ❌ You are not on a NixOS based system. This is required to continue." fi - if [[ "$(uname -m)" != "x86_64" ]]; then + if [[ "$(uname -m)" == "x86_64" ]]; then echod "\n ✅ x86_64 system detected." else ((TEST_FAIL++))