Skip to content

Commit

Permalink
chore: remove install.gnogenesis from root makefile (gnolang#3045)
Browse files Browse the repository at this point in the history
Follow-up to gnolang#3041.

Not even `gnoland` is part of the core commands in the root makefile,
hence it makes no sense for `gnogenesis` to be one of them.
  • Loading branch information
thehowl authored Oct 29, 2024
1 parent 2a2be39 commit ed91991
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ VERIFY_MOD_SUMS ?= false
########################################
# Dev tools
.PHONY: install
install: install.gnokey install.gno install.gnodev install.gnogenesis
install: install.gnokey install.gno install.gnodev

# shortcuts to frequently used commands from sub-components.
.PHONY: install.gnokey
Expand All @@ -45,10 +45,6 @@ install.gno:
install.gnodev:
$(MAKE) --no-print-directory -C ./contribs/gnodev install
@printf "\033[0;32m[+] 'gnodev' has been installed. Read more in ./contribs/gnodev/\033[0m\n"
.PHONY: install.gnogenesis
install.gnogenesis:
$(MAKE) --no-print-directory -C ./contribs/gnogenesis install
@printf "\033[0;32m[+] 'gnogenesis' has been installed. Read more in ./contribs/gnogenesis/\033[0m\n"


# old aliases
Expand Down
4 changes: 2 additions & 2 deletions contribs/gnogenesis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ To install gnogenesis, clone the repository and build the tool:

```shell
git clone https://github.com/gnoland/gno.git
cd gno
make install.gnogenesis
cd gno/contribs/gnogenesis
make install
```

This will compile and install `gnogenesis` to your system path, allowing you to run commands directly.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Makefile to install the `gnoland` binary:

```bash
cd gno.land
make install.gnoland install.gnogenesis
make install.gnoland && make -C contribs/gnogenesis install
```

To verify that you've installed the binary properly and that you are able to use
Expand Down

0 comments on commit ed91991

Please sign in to comment.