piston/lxc/executors/typescript

8 lines
236 B
Plaintext
Raw Normal View History

runuser runner$1 -c "\
cd /tmp/$2 ; \
mv code.code interim.ts ; \
tsc interim.ts ; \
rm -f interim.ts ; \
mv interim.js code.code ; \
2021-01-16 18:41:41 +01:00
cat args.args | xargs -d '\n' timeout -s KILL 3 node code.code < stdin.stdin"