README: Remove deprecated install target and check for go in setup
seems like i removed that target at some point and forgot to update the readme. As installing go is os specific let's just check for go instead and let the user handle the installing.
This commit is contained in:
parent
3d26e96974
commit
fa13957511
2 changed files with 2 additions and 1 deletions
1
Makefile
1
Makefile
|
@ -16,6 +16,7 @@ test:
|
|||
.PHONY: setup
|
||||
setup:
|
||||
git config core.hooksPath etc/githooks
|
||||
command -v go > /dev/null || (echo "go not installed" && false)
|
||||
|
||||
.PHONY: preview
|
||||
preview: generate
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue