Fix duplicate extraction and release v1.4.71
Build and Release / build (push) Has been cancelled

- Don't clear extraction resume state during hybrid mode (skipPostCleanup)
- Mark ALL completed items as "Entpackt" after successful hybrid extraction
  to prevent full extraction from re-extracting already-extracted archives

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sucukdeluxe
2026-03-01 21:09:53 +01:00
co-authored by Claude Opus 4.6
parent 674cf101da
commit 520ef91d2d
3 changed files with 11 additions and 4 deletions
+1 -1
View File
@@ -1321,7 +1321,7 @@ export async function extractPackageArchives(options: ExtractOptions): Promise<{
}
}
if (failed === 0 && resumeCompleted.size >= allCandidates.length) {
if (failed === 0 && resumeCompleted.size >= allCandidates.length && !options.skipPostCleanup) {
clearExtractResumeState(options.packageDir, options.packageId);
}