Просмотр исходного кода

Don't try to install pleroma on 64bit arm

Bob Mottram 8 лет назад
Родитель
Сommit
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