ccollins476ad commented on a change in pull request #72: MYNEWT-553; add option to print only executed commands during build URL: https://github.com/apache/incubator-mynewt-newt/pull/72#discussion_r124604385
########## File path: newt/vendor/mynewt.apache.org/newt/util/util.go ########## @@ -42,6 +42,7 @@ import ( ) var Verbosity int +var PrintBuildCmds bool Review comment: Hmm... the godep tool seems to be pretty much broken, at least for our use case. There are two options that will work: 1. Perform a complete revendoring of newt. 2. Just copy the util.go changes by hand. I think option 2 is preferred here, since we don't want to upgrade all the dependencies when the current ones are working. The problem is that the Godeps.json file will no longer be correct, but since the tool doesn't work for us anyway, I don't see much value in this file! So, I would just copy your updated util.go file to util/util.go and commit it. For the record, here is how you would do a full revendoring: 1. `rm -rf Godeps vendor` 2. `git commit -a -m 'revendor newt'` 3. `godep save` 4. `git add Godeps vendor` 5. `git commit -a -m 'revendor newt'` 6. Use `git rebase -i` to fixup the two revendor commits I think we need to look into a tool other than godep to do our vendoring. It looks like godep hasn't been updated for a while. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
