Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove install.gnogenesis from root makefile #3045

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading