Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
Signed-off-by: Joaquim Rocha <[email protected]>
  • Loading branch information
joaquimrocha committed Feb 23, 2024
1 parent 950555d commit 35cd9a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/windows/sign.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { sign } = require('./codesign');
const { sign } = require('../esrp');

exports.default = async function (configuration) {
const esrpTool = process.env.ESRP_PATH;
Expand All @@ -15,7 +15,7 @@ exports.default = async function (configuration) {

console.log('Signing', configuration.path);
try {
sign(esrpTool, configuration.path);
sign(esrpTool, 'WINSIGN', configuration.path);
} catch (e) {
console.log('Failed to sign: ', e);
process.exit(1);
Expand Down

0 comments on commit 35cd9a2

Please sign in to comment.