From d92748d24e417b2f0cbe0440e391b9c11c637605 Mon Sep 17 00:00:00 2001 From: John McMaster Date: Mon, 17 Dec 2018 14:28:36 -0800 Subject: [PATCH] make format: fix .git Signed-off-by: John McMaster --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8b34ba48..517d6226 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ build: database: build $(MAKE) -C $@ -FORMAT_EXCLUDE = third_party git env build +FORMAT_EXCLUDE = third_party .git env build FIND_EXCLUDE = $(foreach x,$(FORMAT_EXCLUDE),-and -not -path './$(x)/*') format: find . -name \*.cc $(FIND_EXCLUDE) -print0 | xargs -0 -P $$(nproc) ${CLANG_FORMAT} -style=file -i