Closed remonsec closed 2 years ago
After spawning boxes, I saw that only the gobuster was installed. Then I realized maybe only gobuster used go install and other tools was using go get So just replaced go get with go install and now I see all other tools also get installed
go install
go get
Indeed that makes sense, merging now :) Thank you
Thank you @remonsec for this PR!
After spawning boxes, I saw that only the gobuster was installed. Then I realized maybe only gobuster used
go install
and other tools was usinggo get
So just replacedgo get
withgo install
and now I see all other tools also get installed