mirror of
https://github.com/golang/go
synced 2024-11-08 09:36:24 -07:00
cc41c1e8e7
TestUtimesNanoAt in the vendored copy of golang.org/x/sys/unix currently fails on the linux-arm-arm5spacemonkey builder. Update the vendored copy to pick up the fix from CL 120816. Updates #26034 Change-Id: I75c8875089f58a4c32e2e7aa75884b2bcba7bd68 Reviewed-on: https://go-review.googlesource.com/121800 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> |
||
---|---|---|
.. | ||
github.com | ||
golang.org/x | ||
README | ||
vendor.json |
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.