Skip to content
This repository was archived by the owner on May 31, 2022. It is now read-only.

Commit eeefbea

Browse files
committed
Fixed New Extraction Methods
1 parent 2e82271 commit eeefbea

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/main/java/org/rauschig/jarchivelib/ArchiveFormat.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ public enum ArchiveFormat {
4949
/**
5050
* Constant used to identify the ZIP archive format.
5151
*/
52-
ZIP(ArchiveStreamFactory.ZIP, ".zip");
52+
ZIP(ArchiveStreamFactory.ZIP, ".zip"),
53+
54+
DEB(ArchiveStreamFactory.AR, ".deb"),
55+
56+
RPM(ArchiveStreamFactory.CPIO, ".rpm");
5357

5458
/**
5559
* The name by which the compression algorithm is identified.

0 commit comments

Comments
 (0)