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 <jordan.l.justen@intel.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15040 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Jordan Justen 2014-01-03 19:19:26 +00:00 committed by jljusten
parent e3a0222a9b
commit 4272d1a7c1
1 changed files with 2 additions and 4 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/python
#
# Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.<BR>
# Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR>
#
# 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):