Skip to content
This repository has been archived by the owner on Jan 23, 2019. It is now read-only.

Commit

Permalink
Fix build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha committed May 29, 2017
1 parent 96d8ac3 commit c6dfeee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ def build_cmd(name):
if 'distro' in cfg:
for goos, archs in cfg['distro'].items():
for goarch in archs:
libbuild.go_build(name, goos, goarch, main='cmd/{}/main.go'.format(name))
libbuild.go_build(name, goos, goarch, main='cmd/{}/*.go'.format(name))
else:
libbuild.go_build(name, libbuild.GOHOSTOS, libbuild.GOHOSTARCH, main='cmd/{}/main.go'.format(name))
libbuild.go_build(name, libbuild.GOHOSTOS, libbuild.GOHOSTARCH, main='cmd/{}/*.go'.format(name))


def build_cmds():
Expand Down

0 comments on commit c6dfeee

Please sign in to comment.