From 22256ea40b383f6da982a10f581f84b4e5354625 Mon Sep 17 00:00:00 2001 From: Dmitry Muhomor Date: Sat, 7 Oct 2023 17:43:50 +0300 Subject: [PATCH] add missing loop return during image unpacking It was a harmless bug, rest of zip entries didn't pass the name filter. --- src/frontend/source.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/source.ts b/src/frontend/source.ts index e3a2148..d8a9244 100644 --- a/src/frontend/source.ts +++ b/src/frontend/source.ts @@ -448,6 +448,7 @@ async function unpackFactoryImage(factoryImagePath: string, image: DeviceImage, await fs.rename(unpackedTmp, out) console.log('unpacked ' + getUnpackedFactoryDirName(image)) + return } } finally { await fd.close()