diff options
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 99d3f53e..47e2fa01 100644 --- a/Makefile +++ b/Makefile @@ -67,9 +67,9 @@ doc: cleandoc TEST_PATHS_MAIN = \ $(shell find ./ranger -mindepth 1 -maxdepth 1 -type d \ - -and -not -name '__pycache__' \ - -and -not -path './ranger/config' \ - -and -not -path './ranger/data' \ + ! -name '__pycache__' \ + ! -path './ranger/config' \ + ! -path './ranger/data' \ ) \ ./ranger/__init__.py \ $(shell find ./doc/tools ./examples -type f -name '*.py') \ |