1
0
mirror of https://github.com/golang/go synced 2024-11-22 08:24:41 -07:00

goinstall: fix -u for bzr

Changeset 7012:65601d7cac9e broke goinstall -u for bzr
branches.  This will fix it.

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/3852041
This commit is contained in:
Gustavo Niemeyer 2011-01-04 14:22:18 +11:00 committed by Andrew Gerrand
parent a4bade8592
commit 5530bf90cd

View File

@ -140,7 +140,7 @@ var svn = vcs{
var bzr = vcs{ var bzr = vcs{
cmd: "bzr", cmd: "bzr",
metadir: ".bzr", metadir: ".bzr",
checkout: "checkout", checkout: "update",
clone: "branch", clone: "branch",
update: "update", update: "update",
updateReleaseFlag: "-rrelease", updateReleaseFlag: "-rrelease",