mirror of https://github.com/acidanthera/audk.git
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:
parent
e3a0222a9b
commit
4272d1a7c1
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue