about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2010-12-22 12:34:48 +0100
committeroy <Tom_Adams@web.de>2010-12-22 12:34:48 +0100
commit26546585f78a3b27f82e47aa76dfdfccaa8a5228 (patch)
tree54342d2f655af4fb3ad1c90645bab6934342cc14 /scripts
parenta3797482da2e7eeca2f486c4c77e61b03a4c7eed (diff)
downloadzcatch-26546585f78a3b27f82e47aa76dfdfccaa8a5228.tar.gz
zcatch-26546585f78a3b27f82e47aa76dfdfccaa8a5228.zip
fixed path for make_release in build.py
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build.py b/scripts/build.py
index 6c94965c..4e86d16b 100644
--- a/scripts/build.py
+++ b/scripts/build.py
@@ -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: