2013-06-11 18:45:52 -04:00
|
|
|
package virtualbox
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
type stepPrepareOutputDir struct{}
|
|
|
|
|
|
|
|
func (stepPrepareOutputDir) Run(state map[string]interface{}) multistep.StepAction {
|
|
|
|
config := state["config"].(*config)
|
|
|
|
|
|
|
|
if err := os.MkdirAll(config.OutputDir, 0755); err != nil {
|
2013-06-20 00:07:53 -04:00
|
|
|
state["error"] = err
|
2013-06-11 18:45:52 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (stepPrepareOutputDir) Cleanup(map[string]interface{}) {}
|