go get github.com/test/testgo drop github.com/test/test
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Wow. The OP asked a reasonable question. Go get can put source, binaries and libraries in various parts of the gopath, and it isn't necessarily obvious which files came from which packages.
"rm" is a command found in Unix systems but Go also works in Windows systems, so it would be better
something cross-platform like one OP has said.
On Sun, Oct 20, 2013 at 2:31 AM, Archos <raul...@sent.com> wrote:
"rm" is a command found in Unix systems but Go also works in Windows systems, so it would be better
something cross-platform like one OP has said.just use rmdir /s on windows.is recursively removing a directory difficult enough to warrant a tool?
As with any other build tool, e.g. make, SCons, Waf, Gradle, Maven, Ant,
etc. there is a clean or remove capability
On Oct 20, 2013 3:58 PM, "Russel Winder" <rus...@winder.org.uk> wrote:
>
> On Sun, 2013-10-20 at 09:14 -0700, Benjamin Measures wrote:
> […]
> > What's remains is the src. I'm not familiar with the others you mention,
> > but neither make nor Maven have commands to remove the src. They take the
> > same "attitude" that rm (or OS equiv) will do.
>
> make and Maven do not have automated clean, but the common idiom is to
> ensure there is a clean operation to abstract over the need to know what
> to remove.
>
> > I'd be surprised if the others have a command to remove the source (and
> > makefiles)- if you know of one, please enlighten us.
>
> SCons knows how to do a clean because it know how to do a build. cf.
> "scons -c"
does scons has a option to remove source? this is the main feature request in this thread.
the clean task accomplished by scons -c can be done by go clean -i.
--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
I thought you were going to ask for "go put"
--
Holy Crap .. I ran your deadleaves script and i had 34 not used and 9 not found .... This means its easy for unused script to quickly pile up with time especially during evaluation.I think this should be fully developed , added to the tool chain, and make removal optional ... and I think agree with Russel Winder that its only proper to have a clean or remove capability