Skip to content

Commit 378ffbe

Browse files
committed
fix(installer): public key action pick up downloaded file
1 parent 5297949 commit 378ffbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package/WindowsManaged/Actions/CustomActions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ public static ActionResult ConfigurePublicKey(Session session)
363363

364364
if (!string.IsNullOrEmpty(publicKeyFile))
365365
{
366-
command += $" -PublicKeyFile '{session.Get(GatewayProperties.publicKeyFile)}'";
366+
command += $" -PublicKeyFile '{publicKeyFile}'";
367367
}
368368

369369
if (!string.IsNullOrEmpty(session.Get(GatewayProperties.privateKeyFile)))

0 commit comments

Comments
 (0)