databus23 / helm-diff

A helm plugin that shows a diff explaining what a helm upgrade would change

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't build on fresh clone

edobry opened this issue · comments

Hello, cloned the project and ran make install, but got errors regarding golint.

❯ make install
scripts/update-gofmt.sh
scripts/verify-gofmt.sh
scripts/verify-golint.sh
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
bash: golint: command not found
make: *** [lint] Error 1

I'm able to build other golang programs just fine. My environment:

❯ which go
/opt/homebrew/bin/go
❯ go version
go version go1.20.3 darwin/arm64

@edobry
Run make bootstrap before make install.
If you have helm3 installed run make install/helm3 instead of make install

@bonddim thanks so much