mirror of https://github.com/yt-dlp/yt-dlp
parent
5503e2eecb
commit
08f2f1d641
@ -1,11 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -exuo pipefail
|
||||||
|
|
||||||
python3.13 -m venv ~/yt-dlp-build-venv
|
python3 -m venv ~/yt-dlp-build-venv
|
||||||
source ~/yt-dlp-build-venv/bin/activate
|
source ~/yt-dlp-build-venv/bin/activate
|
||||||
python3.13 -m devscripts.install_deps -o --include build
|
python3 -m devscripts.install_deps -o --include build
|
||||||
python3.13 -m devscripts.install_deps --include secretstorage --include curl-cffi --include pyinstaller
|
python3 -m devscripts.install_deps --include secretstorage --include curl-cffi --include pyinstaller
|
||||||
python3.13 -m devscripts.make_lazy_extractors
|
python3 -m devscripts.make_lazy_extractors
|
||||||
python3.13 devscripts/update-version.py -c "${channel}" -r "${origin}" "${version}"
|
python3 devscripts/update-version.py -c "${channel}" -r "${origin}" "${version}"
|
||||||
python3.13 -m bundle.pyinstaller
|
python3 -m bundle.pyinstaller
|
||||||
mv dist/* /build/
|
mv dist/* /build/
|
||||||
|
Loading…
Reference in New Issue