Clean up more in docs Makefile (#1424)

## Description

Nuke the auto-generated build and node_modules directory during clean.
Note that this won't affect the docs container image because the container's
node_modules are stored in the (internal) root directory of the mounted docs
folder.

## Type of change

- [x] 🗺️ Documentation
- [x] 🐹 Trivial/Minor
This commit is contained in:
Niraj Tolia 2022-11-02 02:10:02 -07:00 committed by GitHub
parent ba66251f52
commit b5a2746008
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,5 +55,5 @@ ${MDGEN_BINARY}: $(shell find ${CORSO_LOCAL_PATH}/src -type f -name *.go) $(shel
$(GOC) go build -o ${MDGEN_BINARY} ${MDGEN_SRC}
clean:
$(DOCSC) rm -rf docs/cli
$(DOCSC) rm -rf docs/cli build node_modules
$(GOC) rm -rf ${CORSO_BUILD_DIR}/*