v1.16.0 #487
Replies: 2 comments 1 reply
-
Have question about installing go-jira on a MacBook. What is the proper command to install? Message "go get" is no longer supported is displayed: $ go get github.com/andygrunwald/go-jira $ go version When using "go install", these messages are displayed: $ go install github.com/andygrunwald/go-jira@latest $ go install gopkg.in/andygrunwald/go-jira.v1 $ go install gopkg.in/andygrunwald/go-jira.v1@latest |
Beta Was this translation helpful? Give feedback.
-
The message says that 'go get' is no longer supported outside a module. Presumably you want to install go-jira to use it in your project, so your project should use modules and then 'go get' will work:
The message says to use 'go install' to build and install a command. go-jira is a library, not an executable, so you should not use 'go install'. |
Beta Was this translation helpful? Give feedback.
-
What's Changed
New Contributors
Full Changelog: v1.15.1...v1.16.0
This discussion was created from the release v1.16.0.
Beta Was this translation helpful? Give feedback.
All reactions