From fc1586576021f20bc87526254044d31908503146 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Wed, 25 Jul 2018 23:34:17 +0200 Subject: [PATCH] Reorder unpack strategies. --- Library/Homebrew/unpack_strategy.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Library/Homebrew/unpack_strategy.rb b/Library/Homebrew/unpack_strategy.rb index 154724ec0a..ff58f7398f 100644 --- a/Library/Homebrew/unpack_strategy.rb +++ b/Library/Homebrew/unpack_strategy.rb @@ -10,16 +10,13 @@ module UnpackStrategy Otf, Air, Executable, - SelfExtractingExecutable, - Jar, - LuaRock, - MicrosoftOfficeXml, + Jar, # needs to be before Zip + LuaRock, # needs to be before Zip + MicrosoftOfficeXml, # needs to be before Zip Zip, - Dmg, Xar, Compress, - Tar, - Bzip2, + Tar, # needs to be before Bzip2/Gzip/Xz/Lzma Gzip, Lzma, Xz, @@ -28,8 +25,11 @@ module UnpackStrategy Mercurial, Subversion, Cvs, + Dmg, # needs to be before Bzip2 + Bzip2, Fossil, Bazaar, + SelfExtractingExecutable, # needs to be before Cab Cab, P7Zip, Sit,