Skip to content

Commit

Permalink
tests: CI output is too noisy
Browse files Browse the repository at this point in the history
Problem:  tests: CI output is too noisy and shows all translated messages
          strings
Solution: redirect stdout of check.vim to /dev/null

Signed-off-by: Christian Brabandt <[email protected]>
  • Loading branch information
chrisbra committed Jul 26, 2024
1 parent be82825 commit 4507f92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/po/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ converted: $(MOCONVERTED)

.po.ck:
$(VIMPROG) -u NONE --noplugins -e -s -X --cmd "set enc=utf-8" \
-S check.vim -c "if error == 0 | q | else | num 2 | cq | endif" $<
-S check.vim -c "if error == 0 | q | else | num 2 | cq | endif" $< >/dev/null
touch $@

check: $(CHECKFILES)
Expand Down

0 comments on commit 4507f92

Please sign in to comment.