We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a72733f commit 49fd219Copy full SHA for 49fd219
support/image-builder/imagebuilder.py
@@ -266,7 +266,7 @@ def createImage(options):
266
if not validImage:
267
raise Exception("Image type/config not supported")
268
269
- if 'ova' in config['image_type'] and shutil.which("ovftool") is None:
+ if 'ova' in config['artifacttype'] and shutil.which("ovftool") is None:
270
raise Exception("ovftool is not available")
271
workingDir = os.path.abspath(options.stage_path + "/" + config['image_type'])
272
if os.path.exists(workingDir) and os.path.isdir(workingDir):
0 commit comments