From 640ebd33cdcd316c995a36e9e4082e43a9070d58 Mon Sep 17 00:00:00 2001 From: mshanemc Date: Wed, 7 Dec 2022 12:42:02 -0600 Subject: [PATCH] fix: win pack error --- src/commands/pack/win.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/pack/win.ts b/src/commands/pack/win.ts index 23b403291..dd54d79e8 100644 --- a/src/commands/pack/win.ts +++ b/src/commands/pack/win.ts @@ -289,6 +289,6 @@ async function signWindows(o: string, arch: string, config: Interfaces.Config, w '-in', buildLocationUnsigned, '-out', o, ] - await exec(`osslsigncode sign ${args}.join(' ')`) + await exec(`osslsigncode sign ${args.join(' ')}`) }