Skip to content

Commit

Permalink
Fix clean make command (plone#6403)
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh authored Oct 14, 2024
1 parent b79ef9d commit a74ec0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ test: ## Run unit tests
.PHONY: clean
clean: ## Clean development environment
rm -rf node_modules
find ./packages -name node_modules -exec rm -rf {} \;
find ./packages -name node_modules -not -path "./packages/volto/__tests__/*" -exec rm -rf {} \;

.PHONY: install
install: ## Set up development environment
Expand Down
1 change: 1 addition & 0 deletions packages/volto/news/6403.internal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix `clean` make command @sneridagh

0 comments on commit a74ec0c

Please sign in to comment.