diff options
Diffstat (limited to 'repo.common.go')
| -rw-r--r-- | repo.common.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/repo.common.go b/repo.common.go new file mode 100644 index 0000000..6a30f46 --- /dev/null +++ b/repo.common.go @@ -0,0 +1,10 @@ +package gitpb + +// does this repo build a binary? +func (r *Repo) IsBinary() bool { + if r.GoInfo != nil { + return r.GoInfo.GetGoBinary() + } + // todo: detect C & other language binary packages + return false +} |
