Browse Source

Don't need nodejs on mesh nodes

Bob Mottram 7 years ago
parent
commit
2fbbe064db
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      src/freedombone-image-customise

+ 4
- 0
src/freedombone-image-customise View File

@@ -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
 }