Skip to content

Commit

Permalink
Builds: Fixing incorrect variable names in script
Browse files Browse the repository at this point in the history
A few were not using the new _FULL naming.
  • Loading branch information
skyjake committed Oct 10, 2011
1 parent b3435af commit 9ecd4ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions distrib/platform_release.py
Expand Up @@ -225,8 +225,8 @@ def win_release():
file('win32\setup.iss', 'wt').write(script
.replace('${YEAR}', time.strftime('%Y'))
.replace('${BUILD}', DOOMSDAY_BUILD)
.replace('${VERSION}', DOOMSDAY_VERSION)
.replace('${VERSION_PLAIN}', DOOMSDAY_VERSION_PLAIN))
.replace('${VERSION}', DOOMSDAY_VERSION_FULL)
.replace('${VERSION_PLAIN}', DOOMSDAY_VERSION_FULL_PLAIN))

# Execute the win32 release script.
os.chdir('win32')
Expand Down

0 comments on commit 9ecd4ba

Please sign in to comment.