소스 검색

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