From acf45e5ea1bf8a6e2623fdd7c3e2ec908578430b Mon Sep 17 00:00:00 2001 From: Valentin Syrovatskiy <v.syrovatskiy@picodata.io> Date: Mon, 1 Aug 2022 23:02:44 +0300 Subject: [PATCH] chore: add make clean --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 458d44af95..40e8e45248 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: default fmt lint test check fat +.PHONY: default fmt lint test check fat clean default: ; @@ -48,3 +48,8 @@ fat: @$(MAKE) fmt --no-print-directory @$(MAKE) lint --no-print-directory @$(MAKE) test --no-print-directory + +clean: + cargo clean + cd tarantool-sys && rm -f patches-applied && git reset --hard ; cd - + find . -type d -name __pycache__ | xargs -n 500 rm -rf -- GitLab