From ce2276583adce6a1c5be579bc6388478b3188332 Mon Sep 17 00:00:00 2001 From: Dor Askayo Date: Fri, 13 Jan 2023 10:28:30 +0200 Subject: [PATCH] Mention bubblewrap mode in error messages --- rootfs.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rootfs.py b/rootfs.py index 7048547..82729fd 100755 --- a/rootfs.py +++ b/rootfs.py @@ -104,9 +104,10 @@ def main(): return count if check_types() > 1: - raise ValueError("No more than one of qemu, chroot, minikernel, bare metal may be used.") + raise ValueError("No more than one of qemu, chroot, bwrap, minikernel, bare metal " + "may be used.") if check_types() == 0: - raise ValueError("One of qemu, chroot, minikernel or bare metal must be selected.") + raise ValueError("One of qemu, chroot, bwrap, minikernel or bare metal must be selected.") if args.bare_metal: args.no_create_config = True