Update TODO, since Upload is implemented

This commit is contained in:
Mitchell Hashimoto 2013-05-24 09:48:24 -07:00
parent 69f1d0fd9f
commit 81d8b20730
2 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,6 @@
* builder/amazonebs: Add unique ID to AMI name so multiple can be made
* communicator/ssh: Ability to re-establish connection
* communicator/ssh: Download()
* communicator/ssh: Upload()
* packer: Communicator should have Close() method
* packer: Ui input
* packer/plugin: Better error messages/detection if plugin crashes

View File

@ -157,5 +157,6 @@ func (c *comm) Upload(path string, input io.Reader) error {
}
func (c *comm) Download(string, io.Writer) error {
panic("not implemented yet")
return nil
}