aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/get_update.txt
blob: df889c49b0acd916fdd1357e5d629f30dd7682d3 (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
# Tests Issue #9224
# The recursive updating was trying to walk to
# former dependencies, not current ones.

[!net] skip
[!exec:git] skip

# Rewind
go get github.com/rsc/go-get-issue-9224-cmd
cd $GOPATH/src/github.com/rsc/go-get-issue-9224-lib
exec git reset --hard HEAD~
cd $GOPATH/src

# Run get
go get -u 'github.com/rsc/go-get-issue-9224-cmd'

# (Again with -d -u) Rewind
go get github.com/rsc/go-get-issue-9224-cmd
cd $GOPATH/src/github.com/rsc/go-get-issue-9224-lib
exec git reset --hard HEAD~
cd $GOPATH/src

# (Again with -d -u) Run get
go get -d -u 'github.com/rsc/go-get-issue-9224-cmd'