aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2022-01-20 21:20:31 +0100
committerRobin Jarry <robin@jarry.cc>2022-01-20 21:43:47 +0100
commit07091159169fe6682889cbbdf0a10d9cbb5aa8c8 (patch)
tree1e26307b4c242d6f8c3a160c44441c6fb12af8e9
parent561f8c19af0859b461146fd9f8f2af22574c0c4d (diff)
downloadaerc-07091159169fe6682889cbbdf0a10d9cbb5aa8c8.tar.gz
aerc-07091159169fe6682889cbbdf0a10d9cbb5aa8c8.zip
mk: avoid searching in hidden directories at the root
Signed-off-by: Robin Jarry <robin@jarry.cc>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6f561817..fea54901 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ MANDIR?=$(PREFIX)/share/man
GO?=go
GOFLAGS?=
-GOSRC:=$(shell find . -name '*.go')
+GOSRC:=$(shell find * -name '*.go')
GOSRC+=go.mod go.sum
aerc: $(GOSRC)