From 68fa4b480d25424e0107a0a57544dda27bd9853a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 24 Jun 2022 13:48:48 +0200 Subject: Correcting loop over subdirectories to exclude all dot-directories, not just the one for git. Signed-off-by: Daniel Baumann --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a9a2be1..f8d6057 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ SHELL := sh -e VERSION := $(shell cat VERSION.txt) -TOOLS := $(shell find . -mindepth 1 -maxdepth 1 -type d -and -not -name ".git*" -and -not -name debian) +TOOLS := $(shell find . -mindepth 1 -maxdepth 1 -type d -and -not -name ".*" -and -not -name debian) all: build -- cgit v1.2.3