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""")