Sign in
edge
/
third_party
/
Masterminds
/
glide
/
a1c815014c126f18d12b84933998c18aa2c725ea
/
.
/
action
/
name.go
blob: 7a67b7cec77c4ce92e9131ccd42ba99bfd540f4e [
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.ProjectRoot)
}