From fac628f0d859945870d04817d9a04f04560b4faa Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 11 Nov 2023 18:11:14 +0100 Subject: [PATCH] feat: Make bootdisk optional --- run/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run/run.sh b/run/run.sh index 67bacdb..704492d 100755 --- a/run/run.sh +++ b/run/run.sh @@ -28,7 +28,7 @@ VERS=$(qemu-system-x86_64 --version | head -n 1 | cut -d '(' -f 1) [ ! -d "$STORAGE" ] && error "Storage folder (${STORAGE}) not found!" && exit 13 -if [ ! -f "$STORAGE/data.img" ]; then +if [ ! -f "$STORAGE/boot.img" ]; then . /run/install.sh fi