소스 검색

Don't need nodejs on mesh nodes

Bob Mottram 7 년 전
부모
커밋
2fbbe064db
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      src/freedombone-image-customise

+ 4
- 0
src/freedombone-image-customise 파일 보기

@@ -1897,6 +1897,10 @@ image_setup_utils() {
1897 1897
 }
1898 1898
 
1899 1899
 image_install_nodejs() {
1900
+    if [[ "$VARIANT" == "mesh" ]]; then
1901
+        return
1902
+    fi
1903
+
1900 1904
     mesh_install_nodejs
1901 1905
     echo 'install_nodejs' >> "${rootdir}/root/${PROJECT_NAME}-completed.txt"
1902 1906
 }