github.com/clamoriniere/glide@v0.12.3/action/name.go (about)

     1  package action
     2  
     3  import (
     4  	"github.com/Masterminds/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  }