From f1b3f3be4939e89626571948a7e302596125d37c Mon Sep 17 00:00:00 2001 From: Alan Smithee Date: Mon, 7 Dec 2020 16:09:52 +0900 Subject: [PATCH] Fix webpack output filename fixed output file name is not build.js(bundle.js is correct) in jackdaw/nest/site/nui/webpack.config.js. --- jackdaw/tools/pyinstaller/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jackdaw/tools/pyinstaller/README.md b/jackdaw/tools/pyinstaller/README.md index 3fdeede..106b3c0 100644 --- a/jackdaw/tools/pyinstaller/README.md +++ b/jackdaw/tools/pyinstaller/README.md @@ -2,6 +2,6 @@ Steps: 0. clone the project and install it, preferably to a venv. Venv is preferred not to have colliding module versions. 1. python lib folder: decompress sqlalchemy folder from the sqlalchemy's ".egg" to the same folder where the egg file is. This is needed as pyinstaller only works with non-compressed modules -2. make sure that the build.js file is present in the the jackdaw/nest/site/nui/dist/ folder! If it isn't then you'd need to compile it as described in the main readme. +2. make sure that the bundle.js file is present in the the jackdaw/nest/site/nui/dist/ folder! If it isn't then you'd need to compile it as described in the main readme. 3. ```pyinstaller -F jackdaw\tools\pyinstaller\__main__.spec``` 4. executable will appear in the ./dist/ folder