Electron Builder を使用して Windows インストーラーをビルドしようとしました。ただし、一度だけビルドできますが、インストールするとエラーがスローされます。
もう一度ビルドしようとしましたが、今回はエラーがスローされます。
makensis:
Output: "\Users\hoangha\HaLink\service-oriented-architecture-assignment\desktopApp\~Desktop\\SOA Library Setup.exe"
makensis: Can't open output file
Error - aborting creation process
Finished makensis with code 1
/usr/local/lib/node_modules/electron-builder/cli.js:30
throw error;
^
Error: makensis failed
at ChildProcess.<anonymous> (/usr/local/lib/node_modules/electron-builder/lib/win.js:81:26)
at ChildProcess.emit (events.js:110:17)
at maybeClose (child_process.js:1015:16)
at Socket.<anonymous> (child_process.js:1183:11)
at Socket.emit (events.js:107:17)
at Pipe.close (net.js:485:12)
そして、ここに私の config.json ファイルがあります:
{
"osx" : {
"title": "SOA Library",
"background": "assets/osx/installer.png",
"icon": "assets/osx/mount.icns",
"icon-size": 80,
"contents": [
{ "x": 438, "y": 344, "type": "link", "path": "/Applications" },
{ "x": 192, "y": 344, "type": "file" }
]
},
"win" : {
"title" : "SOA Library",
"icon" : "icon.ico"
}
}
この問題を解決する方法を知っている人はいますか?どこで私は間違ったことをしましたか。