logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>
commit: ce2276583adce6a1c5be579bc6388478b3188332
parent 938d9195030246abb619eac3310f3c32a872cbc1
Author: Dor Askayo <dor.askayo@gmail.com>
Date:   Fri, 13 Jan 2023 10:28:30 +0200

Mention bubblewrap mode in error messages

Diffstat:

Mrootfs.py5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git 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