Skip to content

Commit 985a34d

Browse files
authored
install packages (#15)
1 parent 1fe9fe1 commit 985a34d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func (b *Builder) Build(p *Params) {
3939
color.Cyan("Building %s...\n", pkg)
4040

4141
// build package
42-
cmd, err := runCommand("go", "build", "-o", fileName, pkg)
42+
cmd, err := runCommand("go", "build", "-i", "-o", fileName, pkg)
4343
if err != nil {
4444
log.Fatalf("Could not run 'go build' command: %s", err)
4545
continue

0 commit comments

Comments
 (0)