github.com/s-urbaniak/glide@v0.0.0-20160527141859-5f5e941b1fc4/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.SetHome(home)
    11  }