Commit 036c9ddf authored by Vasiliy Tolstov's avatar Vasiliy Tolstov

fix file download provisioner

when file used with download direction we don't need
to check source on builder because it on machine.
Signed-off-by: default avatarVasiliy Tolstov <v.tolstov@selfip.ru>
parent b77042dc
......@@ -47,10 +47,6 @@ func (p *Provisioner) Prepare(raws ...interface{}) error {
}
var errs *packer.MultiError
if _, err := os.Stat(p.config.Source); err != nil {
errs = packer.MultiErrorAppend(errs,
fmt.Errorf("Bad source '%s': %s", p.config.Source, err))
}
if p.config.Direction != "download" && p.config.Direction != "upload" {
errs = packer.MultiErrorAppend(errs,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment