Skip to content

Commit

Permalink
Merge pull request #5880 from abitrolly/patch-2
Browse files Browse the repository at this point in the history
Make `find` ignore dot files
  • Loading branch information
openshift-merge-robot authored Apr 20, 2020
2 parents e4e42b2 + a58c59f commit 02c2fbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ PKG_MANAGER ?= $(shell command -v dnf yum|head -n1)
# ~/.local/bin is not in PATH on all systems
PRE_COMMIT = $(shell command -v bin/venv/bin/pre-commit ~/.local/bin/pre-commit pre-commit | head -n1)

SOURCES = $(shell find . -name "*.go")
SOURCES = $(shell find . -path './.*' -prune -o -name "*.go")

GO_BUILD=$(GO) build
# Go module support: set `-mod=vendor` to use the vendored sources
Expand Down

0 comments on commit 02c2fbc

Please sign in to comment.