fixed path for make_release in build.py

This commit is contained in:
oy 2010-12-22 12:34:48 +01:00
parent a3797482da
commit 26546585f7

View file

@ -234,7 +234,7 @@ if 1:
if 1:
print("*** making release ***")
os.chdir(src_dir_teeworlds)
command = '"%smake_release.py" %s %s' % (root_dir, version_teeworlds, platform)
command = '"%s/%s/scripts/make_release.py" %s %s' % (work_dir, src_dir_teeworlds, version_teeworlds, platform)
if os.name != "nt":
command = "python %s" % command
if os.system(command) != 0: