Skip to content
Snippets Groups Projects
Commit 9bc3b3ea authored by Lucendio's avatar Lucendio
Browse files

Fix 'make clean'

APP_NODE_MODULE_DIRS contains two paths. Quoting that var breaks
the command and the node_module folders were not deleted.
parent 81a7636d
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ $(LOCAL_DIR)/%/: ...@@ -33,7 +33,7 @@ $(LOCAL_DIR)/%/:
.PHONY: clean .PHONY: clean
clean: clean:
rm -rf \ rm -rf \
"$(APP_NODE_MODULE_DIRS)" \ $(APP_NODE_MODULE_DIRS) \
"$(TEMP_DIR)" \ "$(TEMP_DIR)" \
"$(LOCAL_DIR)/dist" "$(LOCAL_DIR)/dist"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment