Commit 38e4e7f3 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

fix: Boot file

fix: Boot file
parents 5028c9c6 7673ae4a
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
#!/usr/bin/env bash
set -Eeuo pipefail

[ -f "$STORAGE/boot.img" ] && return 0
FILE="$STORAGE/boot.img"
[ -f "$FILE" ] && return 0

TMP="/boot.img"
rm -f "$TMP"
@@ -28,8 +29,6 @@ if ((SIZE<100000)); then
  error "Invalid ISO file: Size is smaller than 100 KB" && exit 62
fi

FILE="$STORAGE/boot.img"

mv -f "$TMP" "$FILE"

{ set +x; } 2>/dev/null