aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/vendor/README
blob: 809f015949c6382d8346433097121f1b4cc0a2b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
How to update the vendored packages:

Assuming the govendor tool is available
run the govendor tool from src/cmd directory

  $ go get -u github.com/kardianos/govendor

To update packages used by cmd/pprof:

  $ cd $GOROOT/src/cmd
  $ GOPATH=$GOROOT govendor fetch github.com/google/pprof/...

To update packages used by internal/objfile/*:

  $ GOPATH=$GOROOT govendor fetch golang.org/x/arch/...

GOPATH=$GOROOT in the above commands is a hack to
make govendor work and will create the .cache folder in
$GOROOT as a side-effect. Please make sure to delete
the directory and not to include the directory in the
commit by accident.

The vendored copy of golang.org/x/tools is maintained by
running the update-xtools.sh script in this directory,
not by govendor.

Please ensure that you remove all *_test.go and testdata
files after updating (golang.org/issue/34986).

  $ cd $GOROOT/src/cmd
  $ find vendor | grep -E '_test.go|testdata' | xargs rm -rf