entrypoint.sh 417 B

12345678910111213
  1. #!/bin/ash
  2. set -e
  3. source ~/.local/share/pipx/venvs/pyinstaller/bin/activate
  4. python -m devscripts.install_deps --include secretstorage
  5. python -m devscripts.make_lazy_extractors
  6. python devscripts/update-version.py -c "${channel}" -r "${origin}" "${version}"
  7. python -m bundle.pyinstaller
  8. deactivate
  9. source ~/.local/share/pipx/venvs/staticx/bin/activate
  10. staticx /yt-dlp/dist/yt-dlp_linux /build/yt-dlp_linux
  11. deactivate