From 4272d1a7c190c6f74f89c32fdf48f795fe9ac25a Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Fri, 3 Jan 2014 19:19:26 +0000 Subject: [PATCH] OvmfPkg/create-release.py: Remove '-alpha' from filename The source control revision is still the produced filename. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen Reviewed-by: Laszlo Ersek git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15040 6f19259b-4bc3-4df7-8a09-765794883524 --- OvmfPkg/create-release.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/OvmfPkg/create-release.py b/OvmfPkg/create-release.py index 6a6017a9f2..f23a77438f 100755 --- a/OvmfPkg/create-release.py +++ b/OvmfPkg/create-release.py @@ -1,6 +1,6 @@ #!/usr/bin/python # -# Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.
+# Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -11,8 +11,6 @@ # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. # -release_type = 'alpha' - import os import re import StringIO @@ -210,7 +208,7 @@ def build(arch): def create_zip(arch): global build_info - filename = 'OVMF-%s-r%d-%s.zip' % (arch, revision, release_type) + filename = 'OVMF-%s-r%d.zip' % (arch, revision) print 'Creating', filename, '...', sys.stdout.flush() if os.path.exists(filename): -- 2.39.2