update build setup

This commit is contained in:
Jaremy Creechley 2023-12-22 18:28:15 -07:00
parent 7b28dd8265
commit 19ed539d3e
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -10,10 +10,10 @@ const
static: static:
let cmd = "cargo build --release" let cmd = "cargo build --release"
hint "\nBuilding codex-storage-proofs: " & cmd warning "\nBuilding codex-storage-proofs: " & cmd
let (output, exitCode) = gorgeEx cmd let (output, exitCode) = gorgeEx cmd
for ln in output.splitLines(): for ln in output.splitLines():
hint("cargo> " & ln) warning("cargo> " & ln)
if exitCode != 0: if exitCode != 0:
raise (ref Defect)(msg: "Failed to build codex-storage-proofs") raise (ref Defect)(msg: "Failed to build codex-storage-proofs")