]> Cypherpunks repositories - gostls13.git/commit
cmd/go: split out cmd/go/internal/work
authorRuss Cox <rsc@golang.org>
Wed, 18 Jan 2017 05:06:08 +0000 (00:06 -0500)
committerRuss Cox <rsc@golang.org>
Fri, 3 Feb 2017 20:31:33 +0000 (20:31 +0000)
commit3c667ef421becd1acdbd8ac57503a1cbed47fc5c
treee5f20397928ede815a1e8ddce709eaa7e8569b36
parenteb93b20c2ebb9cba89657437615957d5f45b5f6c
cmd/go: split out cmd/go/internal/work

This is one CL in a long sequence of changes to break up the
go command from one package into a plausible group of packages.

This sequence is concerned only with moving code, not changing
or cleaning up code. There will still be more cleanup after this sequence.

The entire sequence will be submitted together: it is not a goal
for the tree to build at every step.

For #18653.

Change-Id: Icdd181098f9f0e81f68bf201e6867cdd8f820300
Reviewed-on: https://go-review.googlesource.com/36197
Reviewed-by: David Crawshaw <crawshaw@golang.org>
18 files changed:
src/cmd/go/build_test.go [deleted file]
src/cmd/go/clean.go
src/cmd/go/env.go
src/cmd/go/generate.go
src/cmd/go/get.go
src/cmd/go/internal/base/env.go [new file with mode: 0644]
src/cmd/go/internal/base/flag.go [new file with mode: 0644]
src/cmd/go/internal/base/path.go
src/cmd/go/internal/str/str.go
src/cmd/go/internal/work/build.go [moved from src/cmd/go/build.go with 81% similarity]
src/cmd/go/internal/work/build_test.go [new file with mode: 0644]
src/cmd/go/list.go
src/cmd/go/main.go
src/cmd/go/pkg_test.go
src/cmd/go/run.go
src/cmd/go/test.go
src/cmd/go/testflag.go
src/cmd/go/vet.go