feat: Support committing to image

This commit is contained in:
Kroese 2024-11-13 00:21:13 +01:00 committed by GitHub
parent 91be01cdf6
commit 5b14246478
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,6 +17,7 @@ echo " For support visit $SUPPORT"
: "${BOOT:=""}" # URL of the ISO file
: "${DEBUG:="N"}" # Disable debugging
: "${COMMIT:="N"}" # Commit to image
: "${MACHINE:="virt"}" # Machine selection
: "${ALLOCATE:=""}" # Preallocate diskspace
: "${ARGUMENTS:=""}" # Extra QEMU parameters
@ -80,6 +81,8 @@ fi
# Check folder
[[ "$COMMIT" != [Nn]* ]] && STORAGE="/local"
if [ ! -d "$STORAGE" ]; then
error "Storage folder ($STORAGE) not found!" && exit 13
fi