Skip to content

Commit

Permalink
fix: install set up
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Jan 12, 2021
1 parent d1311c6 commit b398cc5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions electron-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const baseConfig = {
},
linux: {
target: ['deb', 'rpm'],
category: 'Development',
category: 'Finance',
},
directories: {
buildResources: 'resources',
Expand All @@ -69,7 +69,7 @@ const networkConfigs = {
icon: 'icon.testnet.ico',
},
linux: {
icon: './icons-testnet',
icon: './resources/icons-testnet',
},
// macos `Application Support` dir name
extraMetadata: {
Expand All @@ -88,9 +88,7 @@ const networkConfigs = {
win: {
icon: 'icon.mainnet.ico',
},
linux: {
icon: './icons-mainnet',
},
linux: {},
extraMetadata: {
name: 'stacks-wallet',
productName: 'Stacks Wallet',
Expand All @@ -100,6 +98,8 @@ const networkConfigs = {

const mergedConfig = deepMerge(baseConfig, networkConfigs[network]);

console.log(process.env.CI, process.platform);

console.log(JSON.stringify(mergedConfig, null, 2));

module.exports = mergedConfig;

0 comments on commit b398cc5

Please sign in to comment.