Fix build failure when there is no packer-manifest.json file

This commit is contained in:
Chris Bednarski 2016-06-27 19:19:29 -07:00
parent 9aab66b971
commit 19057028cf
1 changed files with 1 additions and 1 deletions

View File

@ -120,5 +120,5 @@ func (p *PostProcessor) PostProcess(ui packer.Ui, source packer.Artifact) (packe
return source, true, fmt.Errorf("Unable to marshal JSON %s", err) return source, true, fmt.Errorf("Unable to marshal JSON %s", err)
} }
return source, true, err return source, true, nil
} }