Skip to content

Commit

Permalink
Update build process to include makeVersionWinStoreCompatible and sig…
Browse files Browse the repository at this point in the history
…ntoolParams in Windows configuration
  • Loading branch information
Thavarshan committed Sep 2, 2024
1 parent 862baf2 commit 2b9ab88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ import path from 'node:path';
const { version } = packageJson;
const iconDir = path.resolve(__dirname, 'src', 'assets', 'images', 'icons');

console.log('CERT_PATH', process.env.CERT_PATH);
console.log('CERT_PASSWORD', process.env.CERT_PASSWORD);
console.log('WINDOWS_KIT_PATH', process.env.WINDOWS_KIT_PATH);

const commonLinuxConfig = {
name: 'comet',
productName: 'Comet',
Expand Down Expand Up @@ -58,6 +54,10 @@ const config: ForgeConfig = {
certPass: process.env.CERT_PASSWORD,
windowsKit: process.env.WINDOWS_KIT_PATH,
icon: path.resolve(iconDir, 'icon.ico'),
makeVersionWinStoreCompatible: true,
signtoolParams: [
'/v',
]
},
},
{
Expand Down

0 comments on commit 2b9ab88

Please sign in to comment.