From dbe02918b6a9950bf0eea392be976664b22b78c8 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Mon, 17 Feb 2020 17:05:54 +0100 Subject: emacs: tidying up a bit the test infrastructure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- .emacs.d/test-emacs.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.emacs.d/test-emacs.sh b/.emacs.d/test-emacs.sh index 7f22025..aece90c 100755 --- a/.emacs.d/test-emacs.sh +++ b/.emacs.d/test-emacs.sh @@ -20,16 +20,16 @@ LOAD_PATH="-L $(readlink -f -- vendor)" # shellcheck disable=SC2039 pushd . +# God knows why this is needed, but `package-lint` bails otherwise... +mkdir -p vendor/data +echo "()" > vendor/data/stdlib-changes + for i in . lisp; do cd "$i" # shellcheck disable=SC2010 # shellcheck disable=SC2035 files="$(ls *.el | grep -v 'custom.el' | grep -v 'abbrevs.el' | grep -v 'lisp-autoloads.el' | grep -v '.emacs.d-autoloads.el' | grep -v 'soria-theme.el' | xargs)" - # 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 elisp-lint.el -f elisp-lint-files-batch $files -- cgit v1.2.3