Преглед на файлове

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

+ 1
- 1
src/freedombone-app-postactiv Целия файл

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