diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-04-11 01:01:46 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-11 01:01:46 +0900 |
commit | 39cd463740d6ec955a5e216eb07d09a51204ecb4 (patch) | |
tree | b94c7dbccc51ed74ba497312dee7e5397360f55a | |
parent | d8704c4f5823389c2ac220a161eaa07a7458da51 (diff) | |
parent | cee35ef25b4391a7c7876d0d479bf8c0b5b13ac3 (diff) | |
download | sphinx-git-39cd463740d6ec955a5e216eb07d09a51204ecb4.tar.gz |
Merge pull request #7455 from tk0miya/clean-mypyfiles
Makefile: Fix "make clean-mypyfiles"
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |