Don't need nodejs on mesh nodes

This commit is contained in:
Bob Mottram 2018-04-16 13:03:45 +01:00
parent e189f3b930
commit 2fbbe064db
1 changed files with 4 additions and 0 deletions

View File

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