Basic content repo outline.

Code's here, no tooling to generate content packs yet, however.
This commit is contained in:
PJB3005
2017-08-04 14:24:01 +02:00
parent e6beee36c7
commit 02c67c851d
23 changed files with 653 additions and 78 deletions

18
RUN_THIS.py Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/python3
# Import future so people on py2 still get the clear error that they need to upgrade.
from __future__ import print_function
import sys
import subprocess
IS_WINDOWS = sys.platform in ("win32", "cygwin")
version = sys.version_info
if version.major < 3 or (version.major == 3 and version.minor < 5):
print("ERROR: You need at least Python 3.5 to build SS14.")
sys.exit(1)
if IS_WINDOWS:
subprocess.run(["py", "-3", "git_helper.py"], cwd="BuildChecker")
else:
subprocess.run(["python3", "git_helper.py"], cwd="BuildChecker")