File: check.sh

package info (click to toggle)
paredit-el 24-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 324 kB
  • ctags: 160
  • sloc: lisp: 3,475; sh: 13; makefile: 9
file content (10 lines) | stat: -rwxr-xr-x 150 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -eu

: ${EMACS:=emacs}

exec ${EMACS} --batch --eval '(progn
  (byte-compile-file "paredit.el" t)
  (byte-compile-file "test.el" t)
)'