github.com/goguardian/glide@v0.0.0-20160311175917-84255172e124/action/init.go (about)

     1  package action
     2  
     3  import (
     4  	gpath "github.com/Masterminds/glide/path"
     5  )
     6  
     7  // Init initializes the action subsystem for handling one or more subesequent actions.
     8  func Init(yaml, home string) {
     9  	gpath.GlideFile = yaml
    10  	gpath.HomeDir = home
    11  }