From 136fc16c91531c710f84dbfde4b6519b4b7d08ba Mon Sep 17 00:00:00 2001 From: Kroese Date: Sun, 16 Apr 2023 16:13:35 +0200 Subject: [PATCH] Storage --- run/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/run/run.sh b/run/run.sh index d33f40b..aa886fe 100755 --- a/run/run.sh +++ b/run/run.sh @@ -3,10 +3,10 @@ set -eu echo "Starting QEMU..." -IMG="/storage" -[ ! -d "$IMG" ] && echo "Storage folder (${IMG}) not found!" && exit 69 +STORAGE="/storage" +[ ! -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 fi