Skip to content

Commit

Permalink
remove leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
jondot committed Mar 30, 2019
1 parent d86d47d commit 36e5294
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/goweight.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ func run(cmd []string) string {
if err != nil {
log.Fatal(err)
}
os.Remove("goweight-bin-target")
return string(out)
}

Expand Down Expand Up @@ -53,7 +54,7 @@ type GoWeight struct {

func NewGoWeight() *GoWeight {
return &GoWeight{
BuildCmd: []string{"go", "build","-o", "goweight-bin-target", "-work", "-a"},
BuildCmd: []string{"go", "build", "-o", "goweight-bin-target", "-work", "-a"},
}
}

Expand Down

0 comments on commit 36e5294

Please sign in to comment.