Refactored the devel/bin structure to hopefully make the system work better on Windows.

This commit is contained in:
Griatch 2015-02-02 20:14:28 +01:00
parent 6323ba965b
commit f780f469b1
12 changed files with 32 additions and 21 deletions

1
bin/windows/evennia.bat Normal file
View file

@ -0,0 +1 @@
@"python" "evennia.py" %*

11
bin/windows/evennia.py Executable file
View file

@ -0,0 +1,11 @@
#! /usr/bin/python2.7
"""
Linux launcher
"""
import os, sys
sys.path.insert(0, os.path.abspath(os.getcwd()))
from evennia.server.evennia_launcher import main
main()