You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When executing the recommended installation command wget -qO - portal.spatiumportae.com | bash on systems where uname -m returns aarch64, the script installs the amd64 executable instead of the arm version.
This is because the script's architecture detection assumes an amd64 system when the output of uname -m contains the substring 64. Furthermore, the detection only interprets an output containing arm as arm system.
I would suggest moving the arm detection if case in front of the amd64 case and also adding aarch as possible arm substring.
The text was updated successfully, but these errors were encountered:
When executing the recommended installation command
wget -qO - portal.spatiumportae.com | bash
on systems whereuname -m
returnsaarch64
, the script installs the amd64 executable instead of the arm version.This is because the script's architecture detection assumes an amd64 system when the output of
uname -m
contains the substring64
. Furthermore, the detection only interprets an output containingarm
as arm system.I would suggest moving the arm detection if case in front of the amd64 case and also adding
aarch
as possible arm substring.The text was updated successfully, but these errors were encountered: