summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-11-13 09:14:26 +0200
committerLars Wirzenius <liw@liw.fi>2023-11-13 09:14:26 +0200
commit708f01284c5fe710f901adcb64e24be0bd64c010 (patch)
treeecfa6cfe88f8866a8bd2969c7ea76e2766319412
parent8772397884362cf29372f105b9794f95554a1c9c (diff)
downloadambient-build-vm-708f01284c5fe710f901adcb64e24be0bd64c010.tar.gz
fix: typo in log message
Signed-off-by: Lars Wirzenius <liw@liw.fi> Sponsored-by: author
-rwxr-xr-xambient-build-vm2
1 files changed, 1 insertions, 1 deletions
diff --git a/ambient-build-vm b/ambient-build-vm
index 124c6d6..a2eebc6 100755
--- a/ambient-build-vm
+++ b/ambient-build-vm
@@ -107,7 +107,7 @@ def build_image(tmp, vmdb, tarball, image):
sys.exit(1)
# Convert built image from raw to QCOW2 format.
- logging.info(f"Convering RAW image to {image}")
+ logging.info(f"Converting RAW image to {image}")
p = subprocess.run(
["qemu-img", "convert", "-f", "raw", "-O", "qcow2", raw, image],
capture_output=True,