Skip to content

Commit

Permalink
fix(bld): update icon for linux post parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmanchhabra committed Nov 9, 2024
1 parent fd1f41a commit 6a73cc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export const parse = async (options, pkg) => {
options.app.name = options.app.name.replace(/[<>:"/\\|?*\u0000-\u001F]/g, '');
}
/* Path to where the icon currently is in the filesystem */
options.app.icon = path.basename(options.app.icon) ?? undefined;
options.app.icon = path.resolve(options.app.icon) ?? undefined;

// TODO(#737): move this out
if (options.platform === 'linux') {
Expand Down

0 comments on commit 6a73cc6

Please sign in to comment.