10 lines
247 B
Bash
Executable File
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 |