piston/lxc/executors/typescript

11 lines
226 B
Plaintext
Raw Normal View History

2021-01-17 01:54:57 +01:00
#!/bin/bash
runuser runner$1 -c "
cd /tmp/$2
mv code.code interim.ts
tsc interim.ts
rm -f interim.ts
mv interim.js code.code
xargs -a args.args -d '\n' timeout -s KILL 3 node code.code < stdin.stdin
"