From b6eea7b224ddbc4dd563835376749da440a71f04 Mon Sep 17 00:00:00 2001 From: the Sane <3657071+the-sane@users.noreply.github.com> Date: Sat, 20 Feb 2021 18:07:08 -0500 Subject: [PATCH] Fix the fix --- lug-helper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lug-helper.sh b/lug-helper.sh index 73b8622..e4b90ad 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -650,7 +650,7 @@ memory_check() { # Check CPU for the required AVX extension avx_check() { - if grep -q "avxa" /proc/cpuinfo; then + if grep -q "avx" /proc/cpuinfo; then preflight_pass+=("Your CPU supports the necessary AVX instruction set.") else preflight_fail+=("Your CPU does not appear to support AVX instructions.\nThis requirement was added to Star Citizen in version 3.11")