summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2022-06-24 11:48:48 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2022-06-24 11:48:52 +0000
commit68fa4b480d25424e0107a0a57544dda27bd9853a (patch)
tree6cda955e1b4645fd4da103b0355f3a137b38f4c9
parentReleasing version 20220615. (diff)
downloadservice-tools-68fa4b480d25424e0107a0a57544dda27bd9853a.tar.xz
service-tools-68fa4b480d25424e0107a0a57544dda27bd9853a.zip
Correcting loop over subdirectories to exclude all dot-directories, not just the one for git.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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