assetfinder
assetfinder copied to clipboard
i have error when install tool
when i run tool i encounter this problem

did you use the command "go get -u github.com/tomnomnom/assetfinder" to download and have you set the PATH for go?
Same error here. it appear when i fill the if api = "" with my api. but is to except the api's, then i remove the paste in ~/go/src and get it again, now is work
Steps to solve this! 1: "go build" then: ./assetfinder
@shadihh9 try to use this if you want to test your local files or changes:
go run *.go
Just running main.go won't work since you are leaving out the local dependencies.
go mod init github.com/tomnomnom/assetfinder/m/v2 go build .
go install github.com/tomnomnom/assetfinder@latest @shadihh9 :)