diff --git a/package.json b/package.json index 330473c..efb7b8b 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,8 @@ }, "extraFiles": [ "lib", - "ProductionServer" + "ProductionServer", + "help" ], "nsis": { "oneClick": false, diff --git a/src/main/index.js b/src/main/index.js index e6fdb48..5bf5640 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -175,7 +175,7 @@ app.on("open-file", (e, filePath) => { }); ipcMain.on('open-help-file', async event => { - const helpFilePath = path.join(root, "ProductionServer", "User Manual.pdf"); + const helpFilePath = path.join(root, "help", "User Manual.pdf"); try { await shell.openPath(helpFilePath);