This commit is contained in:
Kroese 2023-04-16 16:13:35 +02:00 committed by GitHub
parent ce3938370c
commit 136fc16c91

View file

@ -3,10 +3,10 @@ set -eu
echo "Starting QEMU..." echo "Starting QEMU..."
IMG="/storage" STORAGE="/storage"
[ ! -d "$IMG" ] && echo "Storage folder (${IMG}) not found!" && exit 69 [ ! -d "$STORAGE" ] && echo "Storage folder (${STORAGE}) not found!" && exit 69
if [ -f "$IMG/boot.img" ]; then if [ -f "$STORAGE/boot.img" ]; then
. /run/install.sh . /run/install.sh
fi fi