go fmt builder/vmware/iso/step_create_vmx.go to calm down Travis CI.

This commit is contained in:
Ali Rizvi-Santiago 2017-03-23 14:51:45 -05:00
parent e940dc7e42
commit d275bacb0f
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ func (s *stepCreateVMX) Run(state multistep.StateBag) multistep.StepAction {
ui := state.Get("ui").(packer.Ui)
// Convert the iso_path into a path relative to the .vmx file if possible
if relativeIsoPath,err := filepath.Rel(config.VMXTemplatePath, filepath.FromSlash(isoPath)); err == nil {
if relativeIsoPath, err := filepath.Rel(config.VMXTemplatePath, filepath.FromSlash(isoPath)); err == nil {
isoPath = relativeIsoPath
}