lib/eco/api/usecases/default_cases/samples/sftp_case.rb in eco-helpers-2.0.53 vs lib/eco/api/usecases/default_cases/samples/sftp_case.rb in eco-helpers-2.0.54
- old
+ new
@@ -48,10 +48,10 @@
def get_files
with_remote_files.tap do |files|
unless files.empty?
file_names = files.map {|file| to_remote_path(file.name)}
- puts "Getting the following files:"
+ puts "Getting the following files into the local folder '#{local_folder}':"
puts file_names
sftp.download(file_names, local_folder: local_folder)
end
end
end