diff options
Diffstat (limited to '.emacs.d')
| -rwxr-xr-x | .emacs.d/test-emacs.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.emacs.d/test-emacs.sh b/.emacs.d/test-emacs.sh index 37e0c75..12a8b70 100755 --- a/.emacs.d/test-emacs.sh +++ b/.emacs.d/test-emacs.sh @@ -26,6 +26,11 @@ for i in . lisp; do # shellcheck disable=SC2086 ${EMACS:=emacs} -Q --batch ${LOAD_PATH} -l elisp-lint.el -f elisp-lint-files-batch $files + + # God knows why this is needed, but `package-lint` bails otherwise... + mkdir -p vendor/data + echo "()" > vendor/data/stdlib-changes + # shellcheck disable=SC2086 ${EMACS:=emacs} -Q --batch ${LOAD_PATH} -l package-lint.el -f package-lint-batch-and-exit $files done |
