mirror of
https://github.com/dockur/windows.git
synced 2024-11-19 02:31:47 +00:00
fix: Quotes (#69)
This commit is contained in:
parent
a5348e49ff
commit
a9500da77d
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue