From 4aca74bab0012226b316c074b799f37675b499f8 Mon Sep 17 00:00:00 2001 From: Alex Jurkiewicz Date: Mon, 9 Mar 2020 14:38:49 +1100 Subject: [PATCH] Use ZIP64 for Elastic Beanstalk versions Fixes #1180. --- lib/dpl/providers/elasticbeanstalk.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/dpl/providers/elasticbeanstalk.rb b/lib/dpl/providers/elasticbeanstalk.rb index ebb4d0b89..cd1219518 100644 --- a/lib/dpl/providers/elasticbeanstalk.rb +++ b/lib/dpl/providers/elasticbeanstalk.rb @@ -88,6 +88,7 @@ def zip_exists? end def create_zip + ::Zip.write_zip64_support = true # Support >65k files in archive ::Zip::File.open(zip_file, ::Zip::File::CREATE) do |zip| files.each do |path| debug :zip_add, path