You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
420 B
12 lines
420 B
#!/bin/sh |
|
set -o errexit |
|
set -o nounset |
|
|
|
if [ "$EMACS_VERSION" = '23.4' ]; then |
|
curl -O 'https://raw.githubusercontent.com/ohler/ert/c619b56c5bc6a866e33787489545b87d79973205/lisp/emacs-lisp/ert.el' |
|
fi |
|
|
|
EMACS="${EMACS:=emacs}" |
|
|
|
"$EMACS" -Q -batch --eval '(setq byte-compile-error-on-warn t)' -f batch-byte-compile rainbow-delimiters.el |
|
"$EMACS" -Q -batch -l rainbow-delimiters-test.el -f ert-run-tests-batch-and-exit
|
|
|