From 9ad82695d9080ddebd34f7b770b974685fbcbcc6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 26 Jul 2019 18:19:38 -0400 Subject: [PATCH] Add cleaning up of Python 3 files Signed-off-by: Roberto Rosario --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e5e313fb39..e5de22ab31 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ clean-pyc: ## Remove Python artifacts. find . -name '*.pyc' -exec rm -f {} + find . -name '*.pyo' -exec rm -f {} + find . -name '*~' -exec rm -f {} + - + find . -name '__pycache__' -exec rm -R -f {} + # Testing