go install doesn't pull down all files
#34352
Unanswered
glennzw
asked this question in
Programming Help
Replies: 2 comments
-
|
Welcome to the GitHub Community, @glennzw ! 👋 We're happy you're here. You are more likely to get a useful response if you are posting your question(s) in the applicable category and someone might give you a nudge in the right direction. I've gone ahead and moved it for you. Good luck! |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Hi @glennzw I think your best way to get your vendor is using To generate the vendor, command on terminal: go mod init
go mod vendorHope this help your question |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
When running the following command:
go install github.com/gophish/gophish@latestThis folder is not pulled down:
static/js/src/vendorAfter digging around it seems to be that vendor folders are reserved:
golang/go#48332
Previously with this project we had used
go get github.com/gophish/gophish, but as that has been deprecated I updated our documentation to usego install, but now realise it fails with the above vendor folder issue.The only solution I can think of is to use:
git clone https://github.com/gophish/gophish.gitAny advice?
G
Beta Was this translation helpful? Give feedback.
All reactions