Remove unnecessary architecture checks

This commit is contained in:
the Sane.
2024-10-25 21:04:29 -04:00
committed by GitHub
parent 71b226598a
commit 7781a49a67

View File

@ -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
}