Merge pull request #7455 from tk0miya/clean-mypyfiles

Makefile: Fix "make clean-mypyfiles"
This commit is contained in:
Takeshi KOMIYA 2020-04-11 01:01:46 +09:00 committed by GitHub
commit 39cd463740
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ clean-buildfiles:
.PHONY: clean-mypyfiles
clean-mypyfiles:
rm -rf **/.mypy_cache/
find . -name '.mypy_cache' -exec rm -rf {} +
.PHONY: style-check
style-check: