From 2a43fac345bb1a16a9316c7bb12229a4c26fc751 Mon Sep 17 00:00:00 2001 From: gnongs Date: Fri, 3 Jan 2025 14:51:59 +0000 Subject: [PATCH] Fix build error caused by missing closing curly brace --- src/commands/actions/KeySharesAction.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/actions/KeySharesAction.ts b/src/commands/actions/KeySharesAction.ts index 8e2aeeb..95ed4b8 100644 --- a/src/commands/actions/KeySharesAction.ts +++ b/src/commands/actions/KeySharesAction.ts @@ -85,6 +85,7 @@ export class KeySharesAction extends BaseAction { } else { keystoreFile = path.join(file, dirent.name); } + } } else { keystorePassword = await fsp.readFile(this.args.password, 'utf-8');