github.com/yeaji-helix/glide@v0.13.4-0.20220526014137-5b8f7801511f/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  }