Re: [go-nuts] Re: gofmt question

2017-07-01 Thread Siduri Irudis
Hi, If you add comments to preserve space, then other people who code with you might not be appreciative :> Have a look at git's hooks here: https://git-scm.com/book/gr/v2/Customizing-Git-Git-Hooks and use those to place your personal formatting code and run Go's formatter. If you use svn or mer

Re: [go-nuts] No luck running 'go install' from within go program

2017-07-01 Thread Siduri Irudis
Hi Jan, your advice did the trick --- thank you very much :-) Siduri On Sat, Jul 1, 2017 at 9:46 AM, Jan Mercl <0xj...@gmail.com> wrote: > On Sat, Jul 1, 2017 at 5:12 AM wrote: > > > and the golang version is go_project.go > <https://bitbucket.org/siduri-

[go-nuts] No luck running 'go install' from within go program

2017-06-30 Thread siduri . irudis
going wrong here? My repository is here: https://bitbucket.org/siduri-irudis/go-lazy-tools The bash script is called small_go_project_builder.sh <https://bitbucket.org/siduri-irudis/go-lazy-tools/src/a05a0e9866d86bbf3a5d551f2a5b28655cb03e2b/small_go_project_builder.sh?at=master> and th

[go-nuts] Re: gofmt question

2017-06-30 Thread siduri . irudis
I have a few such bug bears, so, my trick is to 'fix' fmt's helpful services when I check a file out, and only run fmt automatically when the file is committed to the repository. This keeps my fugly habits out of the tidy fmt'ed space and at the same time, keeps fmt's attempts to tickle my OCD