From 01b02527652ff068ef86df4ed08f720b4dc53111 Mon Sep 17 00:00:00 2001 From: Junjie Gao Date: Thu, 26 Dec 2024 06:27:30 +0000 Subject: [PATCH] fix: check-line-endings commands of Makefile Signed-off-by: Junjie Gao --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d0466e93..76c11ea0 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ clean: .PHONY: check-line-endings check-line-endings: ## check line endings ! find . -name "*.go" -type f -exec file "{}" ";" | grep CRLF - ! find scripts -name "*.sh" -type f -exec file "{}" ";" | grep CRLF + ! find . -name "*.sh" -type f -exec file "{}" ";" | grep CRLF .PHONY: fix-line-endings fix-line-endings: ## fix line endings