Skip to content

Commit

Permalink
fix: install dymd in the relayer flow
Browse files Browse the repository at this point in the history
  • Loading branch information
artemijspavlovs committed Nov 26, 2024
1 parent af0dab9 commit 48c87d4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cmd/relayer/setup/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,13 @@ func Cmd() *cobra.Command {
return
}

dymdDep := dependencies.DefaultDymdDependency()
err = dependencies.InstallBinaryFromRelease(dymdDep)
if err != nil {
pterm.Error.Printfln("failed to install binary: %s", err)
return
}

// things to check:
// 1. relayer folder exists
isRelayerDirPresent, err := filesystem.DirNotEmpty(relayerHome)
Expand Down

0 comments on commit 48c87d4

Please sign in to comment.