mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-02-24 07:43:08 +00:00
Fix error message formatting
This commit is contained in:
parent
c1fc24d4af
commit
62e7b145fa
@ -262,7 +262,7 @@ proc deployTestToken*(
|
||||
execCmdEx(fmt"""cd {submodulePath} && pnpm install""")
|
||||
trace "Executed pnpm install command", output = pnpmInstallOutput
|
||||
if pnpmInstallExitCode != 0:
|
||||
return error("pnpm install command failed" & pnpmInstallOutput)
|
||||
return err("pnpm install command failed" & pnpmInstallOutput)
|
||||
|
||||
let (forgeBuildOutput, forgeBuildExitCode) =
|
||||
execCmdEx(fmt"""cd {submodulePath} && {forgePath} build""")
|
||||
@ -372,7 +372,7 @@ proc executeForgeContractDeployScripts*(
|
||||
execCmdEx(fmt"""cd {submodulePath} && pnpm install""")
|
||||
trace "Executed pnpm install command", output = pnpmInstallOutput
|
||||
if pnpmInstallExitCode != 0:
|
||||
error("pnpm install failed")
|
||||
return err("pnpm install command failed" & pnpmInstallOutput)
|
||||
|
||||
let (forgeBuildOutput, forgeBuildExitCode) =
|
||||
execCmdEx(fmt"""cd {submodulePath} && {forgePath} build""")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user