Skip to content

Commit

Permalink
fix(gno.land/Makefile): lazily start gnoland node (#2293)
Browse files Browse the repository at this point in the history
`start.gnoland` fails as it requires `config`, `genesis`,... to be
created manually in order to start the node.

Since this is for development purpose. Let's run `gnoland start` with
`-lazy` flag.
  • Loading branch information
harry-hov authored Jun 6, 2024
1 parent fabf6c8 commit 2e5ac4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gno.land/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ GOTEST_FLAGS ?= -v -p 1 -timeout=30m
########################################
# Dev tools
.PHONY: start.gnoland
start.gnoland:; go run ./cmd/gnoland start
start.gnoland:; go run ./cmd/gnoland start -lazy

.PHONY: start.gnoweb
start.gnoweb:; go run ./cmd/gnoweb
Expand Down

0 comments on commit 2e5ac4a

Please sign in to comment.