Oh ok, awesome. Should've thought of trying that! Thought go install
is just for remote packages but then, of course that's what go get is
for. Cheers!
On May 3, 12:38 pm, Kyle Lemons <
kev...@google.com> wrote:
> On Wed, May 2, 2012 at 7:39 PM, Phil S. <
philipp.schum...@gmail.com> wrote:
> > Hi gophers,
>
> > now "go build" is a really neat tool but it seems like it recompiles
> > all source files everytime,
>
> This is somewhat overstating the case; for a single package, yes, it
> compiles all source files whenever it recompiles that package. That's not
> a problem, because the go compilers are blisteringly fast. It does not
> recompile imported packages that are up-to-date, however, *except when you
> are using local imports*. (one of the many reasons not to use them). If