aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2021-11-13 18:08:24 +0100
committerGitHub <noreply@github.com>2021-11-13 09:08:24 -0800
commit6e20efa48288589bd472124752ffad080a520599 (patch)
tree2b7bd60ddf539e061a89611530e28e3805d12641 /Makefile
parentfix(ci): avoid failing "dirname"-cleanup PRs (#1405) (diff)
downloadnvim-lspconfig-6e20efa48288589bd472124752ffad080a520599.tar
nvim-lspconfig-6e20efa48288589bd472124752ffad080a520599.tar.gz
nvim-lspconfig-6e20efa48288589bd472124752ffad080a520599.tar.bz2
nvim-lspconfig-6e20efa48288589bd472124752ffad080a520599.tar.lz
nvim-lspconfig-6e20efa48288589bd472124752ffad080a520599.tar.xz
nvim-lspconfig-6e20efa48288589bd472124752ffad080a520599.tar.zst
nvim-lspconfig-6e20efa48288589bd472124752ffad080a520599.zip
build: replace echo with printf so newlines are interpreted (#1419)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5b3f0b17..5e471a09 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
test:
sh ./scripts/run_test.sh
lint:
- @echo "\nRunning luacheck\n"
+ @printf "\nRunning luacheck\n"
luacheck lua/* test/*
- @echo "\nRunning stylua\n"
+ @printf "\nRunning stylua\n"
stylua --check .
.PHONY: test lint