@@ -28,7 +28,7 @@ XGO_VERSION := go-1.24.x
28
28
AIR_PACKAGE ?= github.com/air-verse/air@v1
29
29
EDITORCONFIG_CHECKER_PACKAGE ?= github.com/editorconfig-checker/editorconfig-checker/v3/cmd/editorconfig-checker@v3.1.2
30
30
GOFUMPT_PACKAGE ?= mvdan.cc/gofumpt@v0.7.0
31
- GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/cmd/golangci-lint@v1.63.4
31
+ GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.5
32
32
GXZ_PACKAGE ?= github.com/ulikunitz/xz/cmd/gxz@v0.5.12
33
33
MISSPELL_PACKAGE ?= github.com/golangci/misspell/cmd/misspell@v0.6.0
34
34
SWAGGER_PACKAGE ?= github.com/go-swagger/go-swagger/cmd/swagger@v0.31.0
@@ -255,7 +255,7 @@ fmt-check: fmt
255
255
@diff=$$(git diff --color=always $(GO_SOURCES ) templates $(WEB_DIRS ) ) ; \
256
256
if [ -n " $$ diff" ]; then \
257
257
echo " Please run 'make fmt' and commit the result:" ; \
258
- echo " $$ {diff}" ; \
258
+ printf " %s " " $$ {diff}" ; \
259
259
exit 1; \
260
260
fi
261
261
@@ -281,7 +281,7 @@ swagger-check: generate-swagger
281
281
@diff=$$(git diff --color=always '$(SWAGGER_SPEC ) ' ) ; \
282
282
if [ -n " $$ diff" ]; then \
283
283
echo " Please run 'make generate-swagger' and commit the result:" ; \
284
- echo " $$ {diff}" ; \
284
+ printf " %s " " $$ {diff}" ; \
285
285
exit 1; \
286
286
fi
287
287
@@ -426,7 +426,7 @@ test-check:
426
426
@diff=$$(git status -s ) ; \
427
427
if [ -n " $$ diff" ]; then \
428
428
echo " make test-backend has changed files in the source tree:" ; \
429
- echo " $$ {diff}" ; \
429
+ printf " %s " " $$ {diff}" ; \
430
430
echo " You should change the tests to create these files in a temporary directory." ; \
431
431
echo " Do not simply add these files to .gitignore" ; \
432
432
exit 1; \
@@ -879,7 +879,7 @@ svg-check: svg
879
879
@diff=$$(git diff --color=always --cached $(SVG_DEST_DIR ) ) ; \
880
880
if [ -n " $$ diff" ]; then \
881
881
echo " Please run 'make svg' and 'git add $( SVG_DEST_DIR) ' and commit the result:" ; \
882
- echo " $$ {diff}" ; \
882
+ printf " %s " " $$ {diff}" ; \
883
883
exit 1; \
884
884
fi
885
885
@@ -890,7 +890,7 @@ lockfile-check:
890
890
if [ -n " $$ diff" ]; then \
891
891
echo " package-lock.json is inconsistent with package.json" ; \
892
892
echo " Please run 'npm install --package-lock-only' and commit the result:" ; \
893
- echo " $$ {diff}" ; \
893
+ printf " %s " " $$ {diff}" ; \
894
894
exit 1; \
895
895
fi
896
896
0 commit comments