ketracel/scripts/dev_ipad_run.sh

18 lines
287 B
Bash
Raw Permalink Normal View History

2019-12-25 20:38:19 +00:00
#!/bin/sh
2019-12-25 22:48:28 +00:00
moonc-5.3 `find -type f | grep -v spec | grep 'moon$'`
ngircd -f `pwd`/spec/ngircd.conf
2019-12-25 20:38:19 +00:00
function trap_ctrlc () {
killall ngircd
exit 0
}
trap "trap_ctrlc" 2
cd src
export KETRACEL_DEBUG=yes
export KETRACEL_SPASS=hunter2
2019-12-26 01:30:44 +00:00
lua5.3 -l set_paths ketracel/main.lua
trap_ctrlc