fix: correct go install command in Makefile

This commit is contained in:
Prad Nukala 2025-01-04 20:47:11 -05:00
parent 758a62490f
commit 8b3269be4f
10 changed files with 8 additions and 2 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
.DS_Store
.aider*
.vscode
.idea
bin
tmp

View File

@ -11,10 +11,10 @@ export RELEASE_DATE="$(date +%Y).$(date +%V).$(date +%u)"
all: install test
build: go.sum
go build -o build/hway .
go build -o bin/hway .
install: go.sum
go install -mod=readonly ./cmd/hway
go install -mod=readonly .
########################################
### Tools & dependencies