Merge pull request #6239 from hashicorp/fix_6151

remove file stat
This commit is contained in:
M. Marsh 2018-05-04 16:42:44 -07:00 committed by GitHub
commit 12046fc6b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -230,7 +230,6 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
return fmt.Errorf("Error opening shell script: %s", err)
}
defer f.Close()
info, _ := f.Stat()
// Compile the command
p.config.ctx.Data = &ExecuteCommandTemplate{
@ -258,7 +257,7 @@ func (p *Provisioner) Provision(ui packer.Ui, comm packer.Communicator) error {
r = &UnixReader{Reader: r}
}
if err := comm.Upload(p.config.RemotePath, r, &info); err != nil {
if err := comm.Upload(p.config.RemotePath, r, nil); err != nil {
return fmt.Errorf("Error uploading script: %s", err)
}