2022-11-12 07:42:39pm

This commit is contained in:
Anmol Sethi 2022-11-12 19:42:39 -08:00
parent 016c737388
commit 8606c427fb

View file

@ -92,6 +92,11 @@ build() {
return 0 return 0
fi fi
if [ -n "${LOCAL-}" ]; then
build_local
return 0
fi
case $OS in case $OS in
# macos) # macos)
# ;; # ;;
@ -111,7 +116,7 @@ build() {
;; ;;
*) *)
COLOR=3 logp warn "no builder for OS=$OS, building locally..." COLOR=3 logp warn "no builder for OS=$OS, building locally..."
# build_local build_local
;; ;;
esac esac
} }