
Moved files around to generate releases later on, but also to separate the code into many different applications each with their own purpose (patch server, game server, data storage, script compiler, files library, and so on).
6 lines
212 B
Bash
Executable File
6 lines
212 B
Bash
Executable File
#!/bin/sh
|
|
echo "EGS is free software available under the GNU GPL version 3"
|
|
echo "Copyright (C) 2010-2011 Loic Hoguin"
|
|
echo
|
|
erl -sname egs -pa apps/*/ebin -pa deps/*/ebin -boot start_sasl -s ex_reloader -s egs
|