github.com/xkeyideal/glide@v0.0.0-20171121052037-a806f0aaeda0/action/name.go (about)

     1  package action
     2  
     3  import (
     4  	"github.com/xkeyideal/glide/msg"
     5  )
     6  
     7  // Name prints the name of the package, according to the glide.yaml file.
     8  func Name() {
     9  	conf := EnsureConfig()
    10  	msg.Puts(conf.Name)
    11  }