From 990f405a614b12eb35be4b94083efa78aedcdc44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20Vay=C3=A1?= Date: Thu, 17 Oct 2019 17:11:41 +0200 Subject: [PATCH] [MM-19515] Sign electron builder executable (#1076) * signing electronbuilder exe * remove testing branch --- scripts/Makefile.ps1 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/Makefile.ps1 b/scripts/Makefile.ps1 index 11e15abd..7a192ec9 100644 --- a/scripts/Makefile.ps1 +++ b/scripts/Makefile.ps1 @@ -448,10 +448,10 @@ function Remove-Cert { function Run-Build { Check-Deps -Verbose -Throwable Prepare-Path + Get-Cert Run-BuildId Run-BuildChangelog Run-BuildElectron - Get-Cert Run-BuildForceSignature Run-BuildLicense Run-BuildMsi @@ -498,6 +498,12 @@ function Main { "debug" { Enable-AppVeyorRDP } + "install-cert" { + Get-Cert + } + "remove-cert" { + Remove-Cert + } default { Print-Error "Makefile argument ""$_"" is invalid. Build process aborted." }