diff options
author | hut <hut@lavabit.com> | 2010-04-07 00:57:26 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-04-07 00:57:26 +0200 |
commit | 26aa5c8e7272105a15b9cc7cbbfb0ca789701d55 (patch) | |
tree | 59db9debbecce56fcc275686a3d89d156590e129 | |
parent | 43d4c88cfae47d1726a2ab9ad78d16bbbedc9a9a (diff) | |
download | ranger-26aa5c8e7272105a15b9cc7cbbfb0ca789701d55.tar.gz |
make clean: fixed
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index f3e00ee8..05c565e6 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ cleandoc: test -d $(DOCDIR) && rm -f -- $(DOCDIR)/*.html clean: - find . -regex \*.py[co]\$$ -exec rm -f -- {} \; + find . -regex .\*.py[co]\$$ -exec rm -f -- {} \; test: ./all_tests.py 1 |