From a9500da77d8f71c371dbe9096e553ee2d94a0c55 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 22 Jan 2024 20:46:51 +0100 Subject: [PATCH] fix: Quotes (#69) --- src/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/install.sh b/src/install.sh index e0fe1fe..ec575b2 100644 --- a/src/install.sh +++ b/src/install.sh @@ -214,7 +214,7 @@ if [ ! -f "$DIR/$ETFS" ] || [ ! -f "$DIR/$EFISYS" ]; then fi # Mark ISO as prepared via magic byte - printf '\x16' | dd of=$ISO bs=1 seek=0 count=1 conv=notrunc status=none + printf '\x16' | dd of="$ISO" bs=1 seek=0 count=1 conv=notrunc status=none [[ "$ISO" != "$STORAGE/$BASE" ]] && mv -f "$ISO" "$STORAGE/$BASE" @@ -367,7 +367,7 @@ genisoimage -b "$ETFS" -no-emul-boot -c "$CAT" -iso-level 4 -J -l -D -N -joliet- -boot-info-table -eltorito-alt-boot -eltorito-boot "$EFISYS" -no-emul-boot -o "$OUT" -allow-limited-size "$DIR" # Mark ISO as prepared via magic byte -printf '\x16' | dd of=$OUT bs=1 seek=0 count=1 conv=notrunc status=none +printf '\x16' | dd of="$OUT" bs=1 seek=0 count=1 conv=notrunc status=none [ -n "$CUSTOM" ] && rm -f "$STORAGE/$CUSTOM"