From 6d19b1006b1e34db124725d30a6f7e6903f2b05e Mon Sep 17 00:00:00 2001 From: Sotetsu KOYAMADA Date: Mon, 11 Jun 2018 13:04:01 +0800 Subject: [PATCH] fix: remove *.pyc files in make clear --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 84b7c9e..52318eb 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ clear: rm -rf dist rm -rf *.egg-info find . -name "*pycache*" | xargs rm -rf + rm paicli/*.pyc build: python setup.py install