1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-07-04 11:54:55 +02:00
bitwarden-desktop/sign.js

13 lines
243 B
JavaScript
Raw Normal View History

exports.default = async function(configuration) {
2020-12-31 01:01:55 +01:00
console.log(`config:\n${JSON.stringify(configuration, null, 4)}`)
require("child_process").execSync(
`azuresigntool sign \
--help
`,
{
stdio: "inherit"
}
);
};