Sign in
edge
/
third_party
/
Masterminds
/
glide
/
6bb204f60c1413a94fa7e6129c5ab7550aa2bd8c
/
.
/
action
/
name.go
blob: 4c6db0f284c83e95717dbca0f231e0e047785378 [
file
] [
log
] [
blame
]
package action
import (
"github.com/Masterminds/glide/msg"
)
// Name prints the name of the package, according to the glide.yaml file.
func Name() {
conf := EnsureConfig()
msg.Puts(conf.ProjectName)
}