Debug for forge command

This commit is contained in:
stubbsta 2025-06-10 18:54:53 +02:00
parent 0753d2db9d
commit ed7c75805a

View File

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