diff options
author | hut <hut@lavabit.com> | 2013-03-01 09:06:51 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2013-03-01 09:06:51 +0100 |
commit | 76612b05b5d1490032e38a736c7293bd750c877d (patch) | |
tree | d422d54ee774978e90606a4833d242d87483b4d3 /Makefile | |
parent | 7fb0af44f18ee4aefa0b50df2874d588ebafbcf6 (diff) | |
download | ranger-76612b05b5d1490032e38a736c7293bd750c877d.tar.gz |
Makefile: Fix regex of 'make clean'
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index dca20caa..358493dc 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,7 @@ compile: clean PYTHONOPTIMIZE=$(PYOPTIMIZE) $(PYTHON) -m compileall -q ranger clean: - find ranger -regex .\*.py[co]\$$ -delete + find ranger -regex .\*\.py[co]\$$ -delete find ranger -depth -name __pycache__ -type d -exec rm -rf -- {} \; doc: cleandoc |