From 030abc293c71346880b1b9113274d6f3d1c78ef1 Mon Sep 17 00:00:00 2001 From: Junjie Gao Date: Mon, 30 Dec 2024 08:55:42 +0800 Subject: [PATCH] fix: `check-line-endings` command of Makefile (#252) 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