diff options
| author | oy <Tom_Adams@web.de> | 2010-12-22 12:34:48 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2010-12-22 12:34:48 +0100 |
| commit | 26546585f78a3b27f82e47aa76dfdfccaa8a5228 (patch) | |
| tree | 54342d2f655af4fb3ad1c90645bab6934342cc14 /scripts | |
| parent | a3797482da2e7eeca2f486c4c77e61b03a4c7eed (diff) | |
| download | zcatch-26546585f78a3b27f82e47aa76dfdfccaa8a5228.tar.gz zcatch-26546585f78a3b27f82e47aa76dfdfccaa8a5228.zip | |
fixed path for make_release in build.py
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/build.py | 2 |
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: |