-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.go
55 lines (53 loc) · 1.37 KB
/
install.go
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package main
import (
"log"
"os/exec"
"runtime"
"sync"
)
func main() {
list := []string{
"github.com/acroca/go-symbols",
"github.com/alecthomas/gometalinter",
"github.com/cweill/gotests/...",
"github.com/davidrjenni/reftools/cmd/fillstruct",
"github.com/fatih/gomodifytags",
"github.com/go-delve/delve/cmd/dlv",
"github.com/golangci/golangci-lint/cmd/golangci-lint",
"github.com/haya14busa/goplay/cmd/goplay",
"github.com/josharian/impl",
"github.com/mgechev/revive",
"github.com/ramya-rao-a/go-outline",
"github.com/rogpeppe/godef",
"github.com/sourcegraph/go-langserver",
"github.com/sqs/goreturns",
"github.com/stamblerre/gocode",
"github.com/tylerb/gotype-live",
"github.com/uudashr/gopkgs/cmd/gopkgs",
"github.com/zmb3/gogetdoc",
"golang.org/x/lint/golint",
"golang.org/x/tools/cmd/goimports",
"golang.org/x/tools/cmd/gorename",
"golang.org/x/tools/cmd/guru",
"honnef.co/go/tools/...",
"winterdrache.de/goformat/goformat",
}
var wg sync.WaitGroup
cpus := runtime.NumCPU()
semaphore := make(chan struct{}, cpus)
for _, path := range list {
wg.Add(1)
path := path
go func() {
defer wg.Done()
semaphore <- struct{}{}
log.Printf("start to install %s\n", path)
err := exec.Command("go", "get", "-u", path).Run()
if err != nil {
log.Printf("install error %s: %s\n", path, err)
}
<-semaphore
}()
}
wg.Wait()
}