Skip to content

Commit

Permalink
compression: add support for .tbz
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasJayanth committed Jul 13, 2024
1 parent 3dbda34 commit 981bfed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/compression.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export async function uncompress(pathStr, pkgPath) {
case ".gz":
await tar(pathStr, pkgPath, true);
break;
case ".tbz":
case ".bz2":
case ".xz":
await tar(pathStr, pkgPath);
Expand Down

0 comments on commit 981bfed

Please sign in to comment.