Skip to content

Commit

Permalink
linux seems to want lowercase path for resources
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcottle committed Aug 8, 2024
1 parent c632983 commit 9e4815f
Showing 1 changed file with 29 additions and 11 deletions.
40 changes: 29 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,23 @@
"directories": {
"buildResources": "electron/build"
},
"extraFiles": [
{
"from": "build/exe",
"to": "Resources/app/electron/build/exe",
"filter": [
"**/*"
]
}
],
"mac": {
"target": "dmg",
"identity": null,
"artifactName": "ReticulumMeshChat-v${version}-${os}.${ext}",
"extendInfo": {
"NSMicrophoneUsageDescription": "Microphone access is only needed for Audio Calls",
"com.apple.security.device.audio-input": true
}
},
"extraFiles": [
{
"from": "build/exe",
"to": "Resources/app/electron/build/exe",
"filter": [
"**/*"
]
}
]
},
"win": {
"artifactName": "ReticulumMeshChat-v${version}-${os}.${ext}",
Expand All @@ -54,11 +54,29 @@
{
"target": "nsis"
}
],
"extraFiles": [
{
"from": "build/exe",
"to": "Resources/app/electron/build/exe",
"filter": [
"**/*"
]
}
]
},
"linux": {
"artifactName": "ReticulumMeshChat-v${version}-${os}.${ext}",
"target": "AppImage"
"target": "AppImage",
"extraFiles": [
{
"from": "build/exe",
"to": "resources/app/electron/build/exe",
"filter": [
"**/*"
]
}
]
},
"dmg": {
"writeUpdateInfo": false
Expand Down

0 comments on commit 9e4815f

Please sign in to comment.