Skip to content

Commit

Permalink
Update build.go
Browse files Browse the repository at this point in the history
  • Loading branch information
AudriusButkevicius committed Aug 24, 2019
1 parent c2d1a13 commit d3edef8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ func main() {
}
}

func runCmd(args ...string) error {
cmd := exec.Command(args[0], args[1:]...)
func runCmd(arg string, args ...string) error {
cmd := exec.Command(arg, args...)

cmd.Stdin = os.Stdin
cmd.Stdout = os.Stdout
Expand Down

0 comments on commit d3edef8

Please sign in to comment.