Files
ChillcraftOS/export-image/prerun.sh
2025-03-21 10:25:29 -07:00

10 lines
247 B
Bash
Executable File

#!/bin/bash -e
# Check if the architecture is arm64 or armhf
if [[ "$ARCH" == "arm64" || "$ARCH" == "armhf" ]]; then
# If the architecture is arm64 or armhf, run mk-img.sh
./mk-img.sh
else
# Otherwise, run mk-iso.sh
./mk-iso.sh
fi