Skip to content
This repository was archived by the owner on Apr 9, 2025. It is now read-only.

Commit 1c94b03

Browse files
committed
Work around a build issue
see electron-userland/electron-builder#2570
1 parent dd0c329 commit 1c94b03

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,9 @@
128128
"linux": {
129129
"category": "Utility",
130130
"target": ["AppImage", "deb", "rpm"]
131+
},
132+
"directories": {
133+
"buildResources": "resources"
131134
}
132135
}
133136
}

src/main-process/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const logFileName = "debug.log";
4343
export const pingFileName = "tagtime.log";
4444
export const appRoot = path.join(__dirname, "..", "..", "..");
4545
export const imagesPath = path.resolve(appRoot, "resources");
46-
export const logoPath = path.resolve(imagesPath, "tagtime.png");
46+
export const logoPath = path.resolve(imagesPath, "icon.png");
4747
export let trayIconPath: string;
4848
if (platform() === "darwin") {
4949
trayIconPath = path.resolve(imagesPath, "mac.png");

0 commit comments

Comments
 (0)