Skip to content
This repository has been archived by the owner on May 18, 2021. It is now read-only.

Commit

Permalink
Make sure forge.config.js makers are using the correct name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Justsnoopy30 committed Apr 24, 2020
1 parent 8bbc71f commit 44726d1
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ const packageJSON = require('./package.json');
module.exports = {
"packagerConfig": {
"name": `${packageJSON.productName}`,
"executableName": `${packageJSON.productName}`,
"icon": "./page/assets/favicon"
},
"make_targets": {
Expand All @@ -26,15 +25,21 @@ module.exports = {
},
{
"name": "@electron-forge/maker-deb",
"config": {}
"config": {
"name": `${packageJSON.productName}`
}
},
{
"name": "@electron-forge/maker-dmg",
"config": {}
"config": {
"name": `${packageJSON.productName}`
}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
"config": {
"name": `${packageJSON.productName}`
}
}
]
}

0 comments on commit 44726d1

Please sign in to comment.