🔨 Support macOS find cmd

This commit is contained in:
makeworld 2020-09-18 14:00:50 -04:00
parent fe0fd784bb
commit 3cb15cb257
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
GITV != git describe --tags
GITC != git rev-parse --verify HEAD
SRC != find -type f -name '*.go' ! -name '*_test.go'
TEST != find -type f -name '*_test.go'
SRC != find . -type f -name '*.go' ! -name '*_test.go'
TEST != find . -type f -name '*_test.go'
PREFIX ?= /usr/local
VERSION ?= $(GITV)