Skip to content
Snippets Groups Projects
Commit 32ea2e3a authored by Adam Vandenberg's avatar Adam Vandenberg
Browse files

Don't unzip war files

parent 42878172
No related branches found
No related tags found
No related merge requests found
......@@ -241,8 +241,9 @@ class Pathname
end
def compression_type
# Don't treat jars as compressed
# Don't treat jars or wars as compressed
return nil if self.extname == '.jar'
return nil if self.extname == '.war'
# OS X installer package
return :pkg if self.extname == '.pkg'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment