This commit is contained in:
Alif Rachmawadi
2019-08-13 17:29:45 +07:00
parent 0af74a8592
commit d34b182ed1
2 changed files with 6 additions and 14 deletions

View File

@@ -107,15 +107,11 @@ function extractFile(file, destDir) {
else if (stats.isDirectory()) {
throw new Error(`Failed to extract ${file} - it is a directory`);
}
const ext = extName();
if ('tar.xz' === ext) {
yield tc.extractTar(file, destDir);
}
else if ('zip' === ext) {
yield tc.extractZip(file, destDir);
if ('tar.xz' === extName()) {
yield tc.extract7z(file, destDir);
}
else {
yield tc.extract7z(file, destDir);
yield tc.extractZip(file, destDir);
}
});
}