File tree 2 files changed +13
-7
lines changed
2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,17 @@ if [ ! -d "src/golang.org/x/text" ]; then
23
23
fi
24
24
go install golang.org/x/text/...
25
25
26
+ if [ ! -d " src/golang.org/x/crypto" ]; then
27
+ git clone https://github.com/golang/crypto src/golang.org/x/crypto
28
+ fi
29
+ go install golang.org/x/crypto/...
30
+
26
31
if [ ! -d " src/golang.org/x/net" ]; then
27
32
git clone https://github.com/golang/net src/golang.org/x/net
28
33
fi
29
34
go install golang.org/x/net/...
30
35
36
+
31
37
go get -u -v github.com/PuerkitoBio/goquery
32
38
33
39
Original file line number Diff line number Diff line change @@ -24,17 +24,17 @@ if not exist "src/golang.org/x/text" (
24
24
)
25
25
go install golang.org/x/text/...
26
26
27
- if not exist " src/golang.org/x/net " (
28
- git clone https://github.com/golang/net src/golang.org/x/net
27
+ if not exist " src/golang.org/x/crypto " (
28
+ git clone https://github.com/golang/crypto src/golang.org/x/crypto
29
29
)
30
- go install golang.org/x/net /...
30
+ go install golang.org/x/crypto /...
31
31
32
-
33
- if not exist " src/github.com/PuerkitoBio/goquery" (
34
- git clone https://github.com/PuerkitoBio/goquery src/github.com/PuerkitoBio/goquery
32
+ if not exist " src/golang.org/x/crypto" (
33
+ git clone https://github.com/golang/crypto src/golang.org/x/crypto
35
34
)
36
- :: go get -u -v github.com/PuerkitoBio/goquery
35
+ go install golang.org/x/crypto/...
37
36
37
+ go get -u -v github.com/PuerkitoBio/goquery
38
38
39
39
set GOPATH = %OLDGOPATH%
40
40
You can’t perform that action at this time.
0 commit comments