Update ansible test to use the new Downloader interface
This commit is contained in:
parent
feee19e4ed
commit
6dd02e7912
|
@ -140,3 +140,7 @@ func (c communicator) UploadDir(dst string, src string, exclude []string) error
|
||||||
func (c communicator) Download(string, io.Writer) error {
|
func (c communicator) Download(string, io.Writer) error {
|
||||||
return errors.New("communicator not supported")
|
return errors.New("communicator not supported")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c communicator) DownloadDir(src string, dst string, exclude []string) error {
|
||||||
|
return errors.New("communicator not supported")
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue