This repository was archived by the owner on Aug 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -171,9 +171,11 @@ any other changes before tagging and releasing a new binary.
171171
172172If ebookmaker crashes and the traceback refers to imported packages, it
173173may be that one of the packages has been updated, requiring an updated
174- version of pyinstaller:
174+ version of pyinstaller. Try upgrading to the latest version of PyInstaller
175+ by finding the [latest released version](https://github.com/pyinstaller/pyinstaller/releases)
176+ and upgrading to it with:
175177```
176- pipenv install "pyinstaller==4.7 "
178+ pipenv install "pyinstaller==$LATEST_RELEASE "
177179```
178180
179181An error such as `local variable 'xxxx' referenced before assignment` may
Original file line number Diff line number Diff line change 55
66set -e
77
8- VERSION=0.11.26
8+ VERSION=$( grep ebookmaker Pipfile | tr -d ' " ' | sed ' s/.*==// ' )
99
10- rm -rf ebookmaker.zip ebmtemp
11- curl -L -o ebookmaker.zip https://github.com/gutenbergtools/ebookmaker/archive/refs/tags/$VERSION .zip
12- unzip -q ebookmaker.zip -d ebmtemp
13- cp ebmtemp/ebookmaker-$VERSION /ebookmaker/parsers/tidy.conf dist
14- rm -rf ebookmaker.zip ebmtemp
10+ curl -L -o dist/tidy.conf https://github.com/gutenbergtools/ebookmaker/raw/$VERSION /ebookmaker/parsers/tidy.conf
You can’t perform that action at this time.
0 commit comments