removed errors import
This commit is contained in:
parent
27f90a1db0
commit
a5eb8b0251
|
@ -9,7 +9,6 @@ import (
|
|||
"strings"
|
||||
"sync"
|
||||
"time"
|
||||
"errors"
|
||||
)
|
||||
|
||||
// The Project struct defines the informations about a project
|
||||
|
@ -96,7 +95,7 @@ func (p *Project) GoInstall() error {
|
|||
var out bytes.Buffer
|
||||
base, _ := os.Getwd()
|
||||
path := base + p.Path
|
||||
|
||||
|
||||
err := os.Setenv("GOBIN",slash(os.Getenv("GOPATH")) + slash("bin"))
|
||||
if err != nil {
|
||||
return err
|
||||
|
|
Loading…
Reference in New Issue