Skip to content

Commit e8062ba

Browse files
committed
Don't fail CI on byte-compiler warnings for now
1 parent e6332cf commit e8062ba

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ compile: $(ELCFILES)
4343

4444
$(ELCHECKS): check-%: %.el
4545
@$(BATCH) --eval '(when (check-declare-file "$*.el") (error "check-declare failed"))'
46-
@$(BATCH) \
47-
--eval "(setq byte-compile-error-on-warn t)" \
48-
-f batch-byte-compile $*.el
46+
@$(BATCH) -f batch-byte-compile $*.el
4947
@$(RM) $*.elc
5048
@if [ -f "$(<:%.el=tests/%-tests.el)" ]; then \
5149
if $(BATCH) --eval "(require 'ert)" 2> /dev/null; then \

0 commit comments

Comments
 (0)