From 19ed539d3ec6dfd2bde06131507baf5d8813539f Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Fri, 22 Dec 2023 18:28:15 -0700 Subject: [PATCH] update build setup --- codex_storage_proofs.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codex_storage_proofs.nim b/codex_storage_proofs.nim index 094e07d..11800be 100644 --- a/codex_storage_proofs.nim +++ b/codex_storage_proofs.nim @@ -10,10 +10,10 @@ const static: let cmd = "cargo build --release" - hint "\nBuilding codex-storage-proofs: " & cmd + warning "\nBuilding codex-storage-proofs: " & cmd let (output, exitCode) = gorgeEx cmd for ln in output.splitLines(): - hint("cargo> " & ln) + warning("cargo> " & ln) if exitCode != 0: raise (ref Defect)(msg: "Failed to build codex-storage-proofs")