fix(led-tool): build cli without spec file dependency

This commit is contained in:
2026-04-14 23:13:21 +12:00
parent eee9327e15
commit 9e72c62481
2 changed files with 2 additions and 2 deletions

View File

@@ -16,5 +16,5 @@ python_version = "3"
[scripts]
web = "python web.py"
cli = "python cli.py"
build = "pyinstaller --clean led-cli.spec"
build = "pyinstaller --clean --onefile --name led-cli --paths lib cli.py"
install = "pipenv install"