Skip to content

Commit

Permalink
Reliable make clean-all (#1229)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc authored Nov 18, 2023
1 parent 4474cfd commit 6401ff2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion worker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@ clean-pip:
clean-subprojects: meson-ninja
$(MESON) subprojects purge --include-cache --confirm

clean-all: clean-subprojects
# Clean subprojects (ignore if it fails) and delete out dir.
clean-all:
-$(MESON) subprojects purge --include-cache --confirm
$(RM) -rf $(MEDIASOUP_OUT_DIR)

# Update the wrap file of a subproject. Usage example:
Expand Down

0 comments on commit 6401ff2

Please sign in to comment.