From 7781a49a677f9c8a8419fc431af5cd77eeb51a34 Mon Sep 17 00:00:00 2001 From: "the Sane." <3657071+the-sane@users.noreply.github.com> Date: Fri, 25 Oct 2024 21:04:29 -0400 Subject: [PATCH] Remove unnecessary architecture checks --- lug-helper.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index a391774..3534b57 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -1009,9 +1009,7 @@ wine_check() { ob_output="$(od -An -t x1 -j 0x12 -N 1 "$file_path" 2>/dev/null | tr -d '[:space:]')" case "$ob_output" in "3e") echo "x86_64" ;; - "03"|"06") echo "i386" ;; "b7") echo "aarch64" ;; - "28") echo "aarch32" ;; *) echo "" ;; esac }