aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2022-03-27 18:25:56 +0200
committerDundar Göc <gocdundar@gmail.com>2022-03-27 18:28:11 +0200
commit680970bfbc90d3635da09e53c2fdfd9e6a49809d (patch)
tree4b87b8b20bba7ef87e033f0bec557a9cfc2d0a30
parent05edab85d7edad63c3b449689b57f9f658782c11 (diff)
downloadrneovim-680970bfbc90d3635da09e53c2fdfd9e6a49809d.tar.gz
rneovim-680970bfbc90d3635da09e53c2fdfd9e6a49809d.tar.bz2
rneovim-680970bfbc90d3635da09e53c2fdfd9e6a49809d.zip
ci(commitlint): use -u NONE instead of --clean
I get a weird error about syntax.vim not being installed when using --clean when running it locally.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 86e723df67..df4f2995d8 100644
--- a/Makefile
+++ b/Makefile
@@ -166,7 +166,7 @@ _opt_pylint:
|| echo "SKIP: pylint (flake8 not found)"
commitlint:
- $(NVIM_PRG) --clean -es +"lua require('scripts.lintcommit').main({trace=false})"
+ $(NVIM_PRG) -u NONE -es +"lua require('scripts.lintcommit').main({trace=false})"
_opt_commitlint:
@test -x build/bin/nvim && { $(MAKE) commitlint; exit $$?; } \