14 lines
276 B
Python
Executable file
14 lines
276 B
Python
Executable file
#! /usr/bin/python2.7
|
|
"""
|
|
Linux launcher
|
|
|
|
This is copied directly into the python bin directory and makes the
|
|
'evennia' program available on $PATH.
|
|
"""
|
|
|
|
import os, sys
|
|
|
|
sys.path.insert(0, os.path.abspath(os.getcwd()))
|
|
|
|
from evennia.server.evennia_launcher import main
|
|
main()
|