Remove setting of cwd() for unix install. Testing suggests this is not necessary on Linux/Unix. Windows cwd() seems to be necessary for -e installs (but maybe remove that too later). Resolves #650.

This commit is contained in:
Griatch 2015-02-08 18:01:59 +01:00
parent 9c96345480
commit 16b7a79573

View File

@ -6,9 +6,5 @@ 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()