nkaje commented on issue #17: URL: https://github.com/apache/mynewt-mcumgr-cli/issues/17#issuecomment-716563559
You will have to rebuild mcumgr. Instructions to build is in https://github.com/apache/mynewt-mcumgr-cli/blob/master/README.md. You need to make the following changes to your go.mod before building. ``` diff --git a/go.mod b/go.mod index 730f94b..627bdf3 100644 --- a/go.mod +++ b/go.mod @@ -6,3 +6,5 @@ require ( mynewt.apache.org/newt v0.0.0-20190805215728-4e771ee138aa mynewt.apache.org/newtmgr v0.0.0-20190909210301-5029f07bf173 ) + +replace mynewt.apache.org => github.com/nkaje/mynewt-newtmgr v0.0.0-20201026120808-84739773a36c ``` and follow the build steps. This builds a new `mcumgr` binary. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
