aws / aws-codedeploy-agent

Host Agent for AWS CodeDeploy
https://aws.amazon.com/codedeploy
Apache License 2.0
328 stars 188 forks source link

Allow archives with "duplicate" files to successfully extract #345

Closed MentalPower closed 1 year ago

MentalPower commented 1 year ago

Some deployment archives have "duplicate" files. These are usually files that have names that differ only on case. This change allows them to be unextracted by the faster native unextractor by passing true as the third argument1. This mirrors the Ruby implementation's behavior without incurring in a performance penalty by using the Ruby extractor.

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

MentalPower commented 1 year ago

This fix is incorrect, please ignore