Commit 81d8b207 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Update TODO, since Upload is implemented

parent 69f1d0fd
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
* builder/amazonebs: Add unique ID to AMI name so multiple can be made * builder/amazonebs: Add unique ID to AMI name so multiple can be made
* communicator/ssh: Ability to re-establish connection * communicator/ssh: Ability to re-establish connection
* communicator/ssh: Download() * communicator/ssh: Download()
* communicator/ssh: Upload()
* packer: Communicator should have Close() method * packer: Communicator should have Close() method
* packer: Ui input * packer: Ui input
* packer/plugin: Better error messages/detection if plugin crashes * packer/plugin: Better error messages/detection if plugin crashes
......
...@@ -157,5 +157,6 @@ func (c *comm) Upload(path string, input io.Reader) error { ...@@ -157,5 +157,6 @@ func (c *comm) Upload(path string, input io.Reader) error {
} }
func (c *comm) Download(string, io.Writer) error { func (c *comm) Download(string, io.Writer) error {
panic("not implemented yet")
return nil return nil
} }
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