Skip to content

Commit

Permalink
docs: update PyInstaller docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zehnm committed Jul 27, 2024
1 parent b4d3bd4 commit 5e7b684
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ sudo apt install qemu binfmt-support qemu-user-static
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
```

Run pyinstaller:
Run PyInstaller:
```shell
docker run --rm --name builder \
--platform=aarch64 \
Expand All @@ -99,7 +99,7 @@ docker run --rm --name builder \
docker.io/unfoldedcircle/r2-pyinstaller:3.11.6 \
bash -c \
"python -m pip install -r requirements.txt && \
pyinstaller --clean --onedir --name intg-appletv intg-appletv/driver.py"
pyinstaller --clean --onedir --name intg-appletv --collect-all zeroconf intg-appletv/driver.py"
```

### aarch64 Linux / Mac
Expand All @@ -112,7 +112,7 @@ docker run --rm --name builder \
docker.io/unfoldedcircle/r2-pyinstaller:3.11.6 \
bash -c \
"python -m pip install -r requirements.txt && \
pyinstaller --clean --onedir --name intg-appletv intg-appletv/driver.py"
pyinstaller --clean --onedir --name intg-appletv --collect-all zeroconf intg-appletv/driver.py"
```

## Versioning
Expand Down

0 comments on commit 5e7b684

Please sign in to comment.