'Generic Commit'
Some checks failed
dropshell-build / build (push) Failing after 46s

This commit is contained in:
Your Name 2025-06-01 17:21:31 +12:00
parent 6eac282690
commit 01966e7fb4

View File

@ -138,15 +138,10 @@ function build() {
local CMAKE_DIR="$1"
if [ ! -f "${CMAKEFILEPATH}" ]; then
echo "${CMAKEFILEPATH} not found"
exit 1
fi
# if have the -m option, then build for multiple architectures
if [ $MULTIBUILD -eq 1 ]; then
for arch in "${ARCHS[@]}"; do
build_arch "$arch"
build_arch "$arch" "$CMAKE_DIR"
done
else
build_arch "$HOSTARCH" "$CMAKE_DIR"