Skip to content
Snippets Groups Projects
Commit 5c81a6c2 authored by Boris Baldassari's avatar Boris Baldassari
Browse files

maven jar-loader: add archive format for jars.

parents 55333836 cc26836d
No related branches found
No related tags found
No related merge requests found
......@@ -175,9 +175,10 @@ def compress(tarpath, nature, dirpath_or_files):
# Additional uncompression archive format support
ADDITIONAL_ARCHIVE_FORMATS = [
# name , extensions, function
# name, extensions, function
("tar.Z|x", [".tar.Z", ".tar.x"], _unpack_tar),
("jar", [".jar"], _unpack_zip),
("tbz2", [".tbz", "tbz2"], _unpack_tar),
# FIXME: make this optional depending on the runtime lzip package install
("tar.lz", [".tar.lz"], _unpack_tar),
]
......
File added
File added
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