More changes and variations, hopefully more applicable to windows.

This commit is contained in:
Griatch 2015-02-02 17:57:01 +01:00
parent 2b82260927
commit 40a1923c85
3 changed files with 901 additions and 915 deletions

View file

@ -29,7 +29,7 @@ def get_scripts():
execlist = []
if os.name == "nt":
# Windows
with open(os.path("bin", "evennia.bat"), "w") as bat_file:
with open(os.path.join("bin", "evennia.bat"), "w") as bat_file:
bat_file.write("@\"%s\" \"%s\" %%*" % (sys.executable, os.path.join("bin/python.py")))
execlist.append("bin/evennia.bat")
else: