Add new interface method to the 'none' communicator

pull/3668/head
Evan Powell 10 years ago
parent 63edbd40ed
commit 542fbf3947

@ -38,3 +38,7 @@ func (c *comm) UploadDir(dst string, src string, excl []string) error {
func (c *comm) Download(path string, output io.Writer) error {
return errors.New("Download is not implemented when communicator = 'none'")
}
func (c *comm) DownloadDir(dst string, src string, excl []string) error {
return errors.New("DownloadDir is not implemented when communicator = 'none'")
}

Loading…
Cancel
Save