Fixed inverted logic.

This commit is contained in:
Raphaël Numbus
2026-04-26 11:17:36 +02:00
parent e3550acc10
commit 5edabe57fb
+1 -1
View File
@@ -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++))