30 lines
945 B
Diff
30 lines
945 B
Diff
|
From 42a8965e87c5bc8e00cfe52db529080fcafb1135 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= <lsedlar@redhat.com>
|
||
|
Date: Mon, 25 Feb 2019 16:06:59 +0100
|
||
|
Subject: [PATCH] image-build: Fix typo in file extension for vmdk image
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
|
||
|
---
|
||
|
pungi/phases/image_build.py | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/pungi/phases/image_build.py b/pungi/phases/image_build.py
|
||
|
index 3fce8871..cca9eeb4 100644
|
||
|
--- a/pungi/phases/image_build.py
|
||
|
+++ b/pungi/phases/image_build.py
|
||
|
@@ -33,7 +33,7 @@ EXTENSIONS = {
|
||
|
'vagrant-virtualbox': ['vagrant-virtualbox.box'],
|
||
|
'vagrant-vmware-fusion': ['vagrant-vmware-fusion.box'],
|
||
|
'vdi': ['vdi'],
|
||
|
- 'vmdk': ['vdmk'],
|
||
|
+ 'vmdk': ['vmdk'],
|
||
|
'vpc': ['vhd'],
|
||
|
'vsphere-ova': ['vsphere.ova'],
|
||
|
}
|
||
|
--
|
||
|
2.17.2
|
||
|
|