From fe79598ee44b94bfb1589227a65af81490be37f3 Mon Sep 17 00:00:00 2001 From: fatedier Date: Thu, 16 Jul 2026 16:40:48 +0800 Subject: [PATCH] fix: fail fast on cross-compile errors (#5420) --- Makefile.cross-compiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.cross-compiles b/Makefile.cross-compiles index d084bbef..eb74d647 100644 --- a/Makefile.cross-compiles +++ b/Makefile.cross-compiles @@ -9,7 +9,7 @@ all: build build: app app: - @$(foreach n, $(os-archs), \ + @set -e; $(foreach n, $(os-archs), \ os=$(shell echo "$(n)" | cut -d : -f 1); \ arch=$(shell echo "$(n)" | cut -d : -f 2); \ extra=$(shell echo "$(n)" | cut -d : -f 3); \