mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 00:16:29 +02:00
fix target names
This commit is contained in:
parent
269787a013
commit
116ebce184
1 changed files with 3 additions and 2 deletions
|
|
@ -3,6 +3,7 @@
|
|||
// Forge loads configs with require(), which fails on ESM files
|
||||
|
||||
const path = require('path');
|
||||
const pkg = require('./package.json');
|
||||
|
||||
module.exports = {
|
||||
packagerConfig: {
|
||||
|
|
@ -36,7 +37,7 @@ module.exports = {
|
|||
name: '@electron-forge/maker-dmg',
|
||||
config: (arch) => ({
|
||||
format: 'ULFO',
|
||||
name: `Rowboat-darwin-${arch}`, // Architecture-specific name to avoid conflicts
|
||||
name: `Rowboat-darwin-${arch}-${pkg.version}`, // Architecture-specific name to avoid conflicts
|
||||
})
|
||||
},
|
||||
{
|
||||
|
|
@ -45,7 +46,7 @@ module.exports = {
|
|||
authors: 'rowboatlabs',
|
||||
description: 'AI coworker with memory',
|
||||
name: `Rowboat-win32-${arch}`,
|
||||
setupExe: `Rowboat-win32-${arch}`,
|
||||
setupExe: `Rowboat-win32-${arch}-${pkg.version}-setup.exe`,
|
||||
})
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue