From 81d8b20730be2b0fe1b3273d5f15bfee28a8c2e0 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 24 May 2013 09:48:24 -0700 Subject: [PATCH] Update TODO, since Upload is implemented --- TODO.md | 1 - communicator/ssh/communicator.go | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/TODO.md b/TODO.md index 254d3e580..6a1d4f83f 100644 --- a/TODO.md +++ b/TODO.md @@ -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 diff --git a/communicator/ssh/communicator.go b/communicator/ssh/communicator.go index 3a058febb..900d2b082 100644 --- a/communicator/ssh/communicator.go +++ b/communicator/ssh/communicator.go @@ -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 }