summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2014-01-03 19:19:26 +0000
committerjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2014-01-03 19:19:26 +0000
commit4272d1a7c190c6f74f89c32fdf48f795fe9ac25a (patch)
tree33465048d39df9050b971b7bab92e9a72fe0df0d
parente3a0222a9b4f1733985b24d7218444f4166dc085 (diff)
downloadedk2-platforms-4272d1a7c190c6f74f89c32fdf48f795fe9ac25a.tar.xz
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
-rwxr-xr-xOvmfPkg/create-release.py6
1 files 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.<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):