Skip to content

Commit 803489d

Browse files
committed
fix(unpack): hooks should not be called for tmp fileOutput
1 parent 7a3e4cf commit 803489d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/unpack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export async function unpackFromUint8(uint8: Uint8Array, options?: UnpackOptions
8888
await fileOutput(
8989
isRocketAssembly ? join(tmpDir, key) : join(cwd, key),
9090
strFromU8(value),
91-
{ hookable },
91+
isRocketAssembly ? { hookable } : undefined,
9292
)
9393
}
9494
logger.success('Extracted successfully.')

0 commit comments

Comments
 (0)