Don't try to install pleroma on 64bit arm
This commit is contained in:
parent
95d12e1384
commit
919e4b49e6
|
@ -903,7 +903,7 @@ function install_gnusocial {
|
|||
|
||||
# Currently Pleroma won't install on ARM systems
|
||||
# because it uses node-sass which doesn't support ARM
|
||||
if [[ "$(arch)" == "arm"* ]]; then
|
||||
if [[ "$(arch)" == "arm"* || "$(arch)" == "aarch"* ]]; then
|
||||
echo -m $'WARNING: Pleroma currently does not support ARM '
|
||||
echo $'architecture, so it will not be installed'
|
||||
else
|
||||
|
|
|
@ -921,7 +921,7 @@ function install_postactiv {
|
|||
|
||||
# Currently Pleroma won't install on ARM systems
|
||||
# because it uses node-sass which doesn't support ARM
|
||||
if [[ "$(arch)" == "arm"* ]]; then
|
||||
if [[ "$(arch)" == "arm"* || "$(arch)" == "aarch"* ]]; then
|
||||
echo -m $'WARNING: Pleroma currently does not support ARM '
|
||||
echo $'architecture, so it will not be installed'
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue