Skip to content

Commit

Permalink
Improved ux around 'generate info'
Browse files Browse the repository at this point in the history
  • Loading branch information
moloch-- committed Jul 2, 2021
1 parent 1379ff6 commit 16ee381
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions server/generate/binaries.go
Original file line number Diff line number Diff line change
Expand Up @@ -827,6 +827,9 @@ func GetUnsupportedTargets() []*clientpb.CompilerTarget {
buildLog.Infof("Dist List = %v", distList)
targets := []*clientpb.CompilerTarget{}
for _, dist := range distList {
if _, ok := SupportedCompilerTargets[dist]; ok {
continue
}
parts := strings.SplitN(dist, "/", 2)
if len(parts) != 2 {
continue
Expand Down

0 comments on commit 16ee381

Please sign in to comment.