From ed7c75805a6e51cd425e3c3acb82b4983d215761 Mon Sep 17 00:00:00 2001 From: stubbsta Date: Tue, 10 Jun 2025 18:54:53 +0200 Subject: [PATCH] Debug for forge command --- tests/waku_rln_relay/utils_onchain.nim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/waku_rln_relay/utils_onchain.nim b/tests/waku_rln_relay/utils_onchain.nim index 3addaf9fc..3c10fe1a4 100644 --- a/tests/waku_rln_relay/utils_onchain.nim +++ b/tests/waku_rln_relay/utils_onchain.nim @@ -175,6 +175,10 @@ proc deployTestToken*( let forgePath = getForgePath() debug "Forge path", forgePath + let forgeCleanCmd = fmt"""cd {submodulePath} && {forgePath} clean""" + debug "Forge clean command", forgeCleanCmd + # get current directory + debug "Current working directory", cwd = getCurrentDir() # Build the Foundry project let (forgeCleanOutput, forgeCleanExitCode) = execCmdEx(fmt"""cd {submodulePath} && {forgePath} clean""")