Skip to content

Commit eeb192d

Browse files
committed
use local keytool instance
Signed-off-by: Jeromy Cannon <[email protected]>
1 parent 390bbf0 commit eeb192d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/node.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ export class NodeCommand extends BaseCommand {
371371
subTasks.push({
372372
title: `Generate ${constants.PUBLIC_PFX} file`,
373373
task: async () => {
374-
const publicPfxFile = await self.keyManager.updatePublicPfxKey(self.keytoolDepManager.getKeytool(), allNodeIds, keysDir, tmpDir)
374+
const publicPfxFile = await self.keyManager.updatePublicPfxKey(keytool, allNodeIds, keysDir, tmpDir)
375375
// TODO: move this validation into the keyManager.updatePublicPfxKey function
376376
const output = await keytool.list(`-storetype pkcs12 -storepass password -keystore ${publicPfxFile}`)
377377
if (!output.includes(`Your keystore contains ${allNodeIds.length * 3} entries`)) {

0 commit comments

Comments
 (0)