18 lines
287 B
Bash
Executable File
18 lines
287 B
Bash
Executable File
#!/bin/sh
|
|
|
|
moonc-5.3 `find -type f | grep -v spec | grep 'moon$'`
|
|
ngircd -f `pwd`/spec/ngircd.conf
|
|
|
|
function trap_ctrlc () {
|
|
killall ngircd
|
|
exit 0
|
|
}
|
|
|
|
trap "trap_ctrlc" 2
|
|
|
|
cd src
|
|
export KETRACEL_DEBUG=yes
|
|
export KETRACEL_SPASS=hunter2
|
|
lua5.3 -l set_paths ketracel/main.lua
|
|
trap_ctrlc
|