Skip to content

Commit

Permalink
bump version , handle help
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrdadrad committed Aug 5, 2016
1 parent 47987c1 commit aeed479
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions mylg.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type Provider interface {
}

const (
version = "0.2.0"
version = "0.2.1"
)

var (
Expand Down Expand Up @@ -346,10 +346,15 @@ func discovery() {
//ts = time.Now()
)

d := disc.New(args)
// help requested
if d == nil {
return
}

spin.Prefix = "please wait "
spin.Start()

d := disc.New(args)
// load OUI async
go func() {
wg.Add(1)
Expand Down

0 comments on commit aeed479

Please sign in to comment.