Skip to content

Commit

Permalink
Refactor builder script to use yt-dlp module paths for dependency ins…
Browse files Browse the repository at this point in the history
…tallation and packaging. Updated commands to reflect the new module structure, ensuring compatibility with the latest project organization.
  • Loading branch information
svemat01 committed Jan 22, 2025
1 parent 0aadeff commit 0e8fad4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builder.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ set -e
: "${VERSION:=$(date +%Y.%m.%d)}"

source ~/.local/share/pipx/venvs/pyinstaller/bin/activate
python -m devscripts.install_deps --include secretstorage --include curl-cffi
python -m devscripts.make_lazy_extractors
python -m yt_dlp.devscripts.install_deps --include secretstorage --include curl-cffi
python -m yt_dlp.devscripts.make_lazy_extractors
python devscripts/update-version.py -c "${CHANNEL}" -r "${ORIGIN}" "${VERSION}"
python -m bundle.pyinstaller --onedir
python -m yt_dlp.bundle.pyinstaller --onedir
deactivate

source ~/.local/share/pipx/venvs/staticx/bin/activate
Expand Down

0 comments on commit 0e8fad4

Please sign in to comment.