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 >

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

2017-07-01 Thread Jan Mercl
On Sat, Jul 1, 2017 at 5:12 AM wrote: > and the golang version is go_project.go cmd = exec.Command("go install -x")

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

2017-06-30 Thread siduri . irudis
Hi, I made a bash script that sets up a small go project with the name(s) of my choice that already has a useful basic shape to start with -- an internal package, tests and benchmarking. (I borrowed code from the official set up video and from Daves's Fibonacci example) I'm happy with the way