From e0c3b446af0fcbccf8929d1081f2168ba23ce78e Mon Sep 17 00:00:00 2001 From: Zoltan Timar Date: Wed, 18 Feb 2026 23:07:22 +0100 Subject: [PATCH] fix: make lint --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 0b2ea3b..0625245 100644 --- a/Makefile +++ b/Makefile @@ -85,6 +85,7 @@ lint: @touch $(LINT_TMP_LUA) @line=1; \ while IFS= read -r f || [ -n "$$f" ]; do \ + f=$$(printf '%s' "$$f" | tr -d '\r'); \ [ -z "$$f" ] && continue; \ before=$$(wc -l < $(LINT_TMP_LUA)); \ cat "$(SRC_DIR)/$$f" >> $(LINT_TMP_LUA); \