From a5eb8b0251b339343c29136eafb75730b31c70a1 Mon Sep 17 00:00:00 2001 From: alessio Date: Sun, 21 Aug 2016 15:37:30 +0200 Subject: [PATCH] removed errors import --- realize/project.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/realize/project.go b/realize/project.go index 2423d18..8b0d0df 100644 --- a/realize/project.go +++ b/realize/project.go @@ -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