Skip to content

Commit

Permalink
Fix nw.js build on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Elanis committed Dec 23, 2024
1 parent b007a37 commit 29b4c5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion benchmark/01-empty-app/nw.js/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ for(const arch of archs) {
glob: false,
app: {
'icon': './app/icon.ico',
'name': '01-empty-app'
'name': '01-empty-app',
'LSApplicationCategoryType': 'public.app-category.utilities',
}
});
console.log(`Building for ${arch} ... Done!`);
Expand Down
3 changes: 2 additions & 1 deletion benchmark/02-empty-app-frameless/nw.js/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ for(const arch of archs) {
glob: false,
app: {
'icon': './app/icon.ico',
'name': '02-empty-app-frameless'
'name': '02-empty-app-frameless',
'LSApplicationCategoryType': 'public.app-category.utilities',
}
});
console.log(`Building for ${arch} ... Done!`);
Expand Down

0 comments on commit 29b4c5f

Please sign in to comment.