Skip to content

Commit

Permalink
update logic in unarchiver (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
endakelly authored Aug 15, 2023
1 parent 58cdfe3 commit fb57013
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public File extractZipFile(File workingDirectory, OperatingSystem operatingSyste
AbstractUnArchiver unArchiver;
if (operatingSystem == OperatingSystem.OSX || operatingSystem == OperatingSystem.WINDOWS) {
unArchiver = new ZipUnArchiver();
} else if (operatingSystem == OperatingSystem.LINUX) {
} else if (operatingSystem == OperatingSystem.LINUX || operatingSystem == OperatingSystem.LINUX_ARM64) {
removeOldTarFile(zipFile);
unArchiver = new TarGZipUnArchiver();
} else {
Expand Down

0 comments on commit fb57013

Please sign in to comment.