浏览代码

Don't try to install pleroma on 64bit arm

Bob Mottram 7 年前
父节点
当前提交
919e4b49e6
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1
    1
      src/freedombone-app-gnusocial
  2. 1
    1
      src/freedombone-app-postactiv

+ 1
- 1
src/freedombone-app-gnusocial 查看文件

@@ -903,7 +903,7 @@ function install_gnusocial {
903 903
 
904 904
     # Currently Pleroma won't install on ARM systems
905 905
     # because it uses node-sass which doesn't support ARM
906
-    if [[ "$(arch)" == "arm"* ]]; then
906
+    if [[ "$(arch)" == "arm"* || "$(arch)" == "aarch"* ]]; then
907 907
         echo -m $'WARNING: Pleroma currently does not support ARM '
908 908
         echo $'architecture, so it will not be installed'
909 909
     else

+ 1
- 1
src/freedombone-app-postactiv 查看文件

@@ -921,7 +921,7 @@ function install_postactiv {
921 921
 
922 922
     # Currently Pleroma won't install on ARM systems
923 923
     # because it uses node-sass which doesn't support ARM
924
-    if [[ "$(arch)" == "arm"* ]]; then
924
+    if [[ "$(arch)" == "arm"* || "$(arch)" == "aarch"* ]]; then
925 925
         echo -m $'WARNING: Pleroma currently does not support ARM '
926 926
         echo $'architecture, so it will not be installed'
927 927
     else