From 8606c427fbbadbeffe1c8f9ae1719d512090f895 Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Sat, 12 Nov 2022 19:42:39 -0800 Subject: [PATCH] 2022-11-12 07:42:39pm --- ci/release/build.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ci/release/build.sh b/ci/release/build.sh index f944e08e7..7a8420f89 100755 --- a/ci/release/build.sh +++ b/ci/release/build.sh @@ -92,6 +92,11 @@ build() { return 0 fi + if [ -n "${LOCAL-}" ]; then + build_local + return 0 + fi + case $OS in # macos) # ;; @@ -111,7 +116,7 @@ build() { ;; *) COLOR=3 logp warn "no builder for OS=$OS, building locally..." - # build_local + build_local ;; esac }