add support for elisp scripts
This commit is contained in:
parent
7bc9b5b63a
commit
1e0b44c8a7
|
@ -87,6 +87,9 @@ case "$lang" in
|
||||||
"rust")
|
"rust")
|
||||||
bin=rust
|
bin=rust
|
||||||
;;
|
;;
|
||||||
|
"elisp" | "el")
|
||||||
|
bin=emacs
|
||||||
|
;;
|
||||||
"bash")
|
"bash")
|
||||||
bin=bash
|
bin=bash
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
cd /tmp/$2
|
||||||
|
runuser -l runner$1 -c "cd /tmp/$2 ; cat args.args | xargs -d '\n' timeout -s KILL 3 emacs -Q --script code.code"
|
|
@ -0,0 +1 @@
|
||||||
|
(message "good")
|
Loading…
Reference in New Issue