Don't try to install pleroma on 64bit arm

This commit is contained in:
Bob Mottram 2017-09-19 19:46:38 +01:00
parent 95d12e1384
commit 919e4b49e6
2 changed files with 2 additions and 2 deletions

View File

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

View File

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