We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72bb39e commit 108dd27Copy full SHA for 108dd27
lgsm/modules/check_system_requirements.sh
@@ -9,7 +9,11 @@ moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
9
10
info_distro.sh
11
12
-# RAM requirements in gigabytes for each game or engine.
+if [[ "${arch}" != "x86_64" && "${arch}" != "i386" && "${arch}" != "i686" ]]; then
13
+ echo -e "${red}Error: Only x86 type architectures are supported. Detected architecture: ${arch}${default}"
14
+ fn_script_log_error "Only x86 type architectures are supported. Detected architecture: ${arch}"
15
+ core_exit.sh
16
+fi
17
18
if [ "${shortname}" == "ark" ]; then
19
ramrequirementgb="7"
0 commit comments