From 5daa269e3d3c10e9169f7c4ec23cc218f3ea5347 Mon Sep 17 00:00:00 2001 From: "rahulk@google.com" Date: Fri, 29 Aug 2008 23:57:39 +0000 Subject: Do not put version info in patch archive file name. It is not useful as user do not ever get to see this file and it will make the signing of executables process more complex. BUG=1179486 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1571 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/tools/build/win/create_installer_archive.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/chrome/tools/build/win/create_installer_archive.py b/chrome/tools/build/win/create_installer_archive.py index aa154f9..024f8b3 100644 --- a/chrome/tools/build/win/create_installer_archive.py +++ b/chrome/tools/build/win/create_installer_archive.py @@ -154,10 +154,7 @@ def CreateArchiveFile(output_dir, staging_dir, current_version, prev_archive_file, archive_file, patch_file) RunSystemCommand(cmd) - archive_file_name = PATCH_FILE_NAME + "-" - if prev_version: - archive_file_name += prev_version + "-" - archive_file_name += current_version + PATCH_FILE_EXT + archive_file_name = PATCH_FILE_NAME + PATCH_FILE_EXT orig_file = patch_file else: archive_file_name = C_FULL_ARCHIVE_FILE -- cgit v1.1