File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ INIT_PACKAGES="(progn \
42
42
(require 'package) \
43
43
(push '(\"melpa\" . \"https://melpa.org/packages/\") package-archives) \
44
44
(package-initialize) \
45
- (dolist (pkg '(package-lint relint )) \
45
+ (dolist (pkg '(package-lint)) \
46
46
(unless (package-installed-p pkg) \
47
47
(unless (assoc pkg package-archive-contents) \
48
48
(package-refresh-contents)) \
@@ -98,13 +98,10 @@ check-ert: $(ELCHECKS)
98
98
-f ert-run-tests-batch-and-exit
99
99
@echo "checks passed!"
100
100
101
+ # TODO: fix issues, then enforce build failure if this fails
101
102
check-package-lint :
102
- # TODO: fix issues, then enforce build failure if this fails
103
103
$(BATCH ) --eval $(INIT_PACKAGES ) --eval ' (setq package-lint-main-file "haskell-mode-pkg.el")' -f package-lint-batch-and-exit $(ELFILES ) || true
104
104
105
- check-relint :
106
- $(BATCH ) --eval $(INIT_PACKAGES ) -f relint-batch $(ELFILES )
107
-
108
105
clean :
109
106
$(RM ) -r build-$(EMACS_VERSION ) $(AUTOLOADS ) $(AUTOLOADS:.el=.elc ) haskell-mode.info dir
110
107
You can’t perform that action at this time.
0 commit comments