diff options
author | Brent Eagles <brent@zeroc.com> | 2006-07-07 15:37:51 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2006-07-07 15:37:51 +0000 |
commit | 7295433c273430b4bd62a215c6e2066fdec08273 (patch) | |
tree | 0a9418cf23182b6d6a8bb677cbc5284c9cfa180d /cpp/install/common/makewindist.py | |
parent | deal with unexpected name consideration (diff) | |
download | ice-7295433c273430b4bd62a215c6e2066fdec08273.tar.bz2 ice-7295433c273430b4bd62a215c6e2066fdec08273.tar.xz ice-7295433c273430b4bd62a215c6e2066fdec08273.zip |
deal with unexpected name consideration (take 2)
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-x | cpp/install/common/makewindist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py index 26008f66d96..d7a5a69243a 100755 --- a/cpp/install/common/makewindist.py +++ b/cpp/install/common/makewindist.py @@ -484,7 +484,7 @@ def buildInstallers(startDir, stageDir, sourcesVersion, installVersion, installe os.chdir(startDir) for project, release in installers: runprog(os.environ['INSTALLSHIELD_HOME'] + "\ISCmdBld -x -w -c COMP -a ZEROC -p " + project + ".ism -r " + release) - msi = project + "-" + sourcesVersion + "-" + installVersion.upper() + ".msi" + msi = project + "-" + sourcesVersion + "-" + installVersion + ".msi" msiPath = os.path.join(os.getcwd(), project, "ZEROC", release, "DiskImages/DISK1", msi) shutil.copy(msiPath, stageDir) |