From 00064c6f89e660b4d090a4eb50b50029163207ba Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Fri, 29 Oct 2021 12:25:12 +0200 Subject: [PATCH] ignore CVS directores in `decently` --- sh/decently | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sh/decently b/sh/decently index 5c95884..792b7b0 100755 --- a/sh/decently +++ b/sh/decently @@ -23,6 +23,8 @@ decently() ( ### @- find "$dir" -type f "$@" \ '!' \ '(' -path '*/.git/*' \ + -or -path '*/CVS/*' \ + -or -path '*/CVSROOT/*' \ -or -path '*/__pycache__/*' \ -or -path '*/[Dd]esktop.ini' \ -or -path '*/Thumbs.db' \