mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-09 00:32:09 -04:00
Update ansible test to use the new Downloader interface
This commit is contained in:
parent
feee19e4ed
commit
6dd02e7912
1 changed files with 4 additions and 0 deletions
|
|
@ -140,3 +140,7 @@ func (c communicator) UploadDir(dst string, src string, exclude []string) error
|
|||
func (c communicator) Download(string, io.Writer) error {
|
||||
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 a new issue