assetfinder
assetfinder copied to clipboard
Unable to install assetfinder
I'm unable to install asset finder using the command go get -u github.com/tomnomnom/assetfinder says got get is deprecated so i tried go install github.com/tomnomnom/assetinder@latest. and seems like its doing nothing. Any help is appreciated and also please update the readme.md for installation.
go get commad is no longer supported
use go install instead
go install -v github.com/tomnomnom/assetfinder@latest
PR https://github.com/tomnomnom/assetfinder/pull/44 updates the readme file
try this:
cd
nano .bashrc
append the following lines at the bottom:
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
CTRL+S CTRL+X
Finally type following in terminal:
source .bashrc
Try reinstalling assetfinder and you are done:)