Skip to content

Commit

Permalink
Update src/zst_decompressor.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
EllAchE authored Apr 23, 2024
1 parent 046868f commit b8506b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zst_decompressor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ const decompressAndAnalyze = async (file, start = 0) => {
// When all analyses are done, delete the files from the set
try {
console.log('Awaiting all analyses to complete...');
await Promise.all(analysisPromises);
await Promise.allSettled(analysisPromises);
console.log('All analyses completed');
for (const file of group) {
if (fs.existsSync(file)) {
Expand Down

0 comments on commit b8506b6

Please sign in to comment.