diff options
| author | garret1317 <garret@airmail.cc> | 2025-10-16 09:24:13 +0100 |
|---|---|---|
| committer | garret1317 <garret@airmail.cc> | 2025-10-16 09:24:13 +0100 |
| commit | 5c7029e614ae162c5080e6a9619a86f0bb273e4f (patch) | |
| tree | 679e317b0c4a3bddb8557f8187baed74a3124174 /contrib/bundle.sh | |
| parent | 8e0bcc6875922667b04c26129d7f2eb4aa36bd0b (diff) | |
| parent | bd3436ba0b71b2f87f83afd329a4ad202a59cedb (diff) | |
| download | yt-dlp-rajiko-5c7029e614ae162c5080e6a9619a86f0bb273e4f.tar.gz yt-dlp-rajiko-5c7029e614ae162c5080e6a9619a86f0bb273e4f.tar.bz2 yt-dlp-rajiko-5c7029e614ae162c5080e6a9619a86f0bb273e4f.zip | |
Merge branch 'master' into aSmartPhone8
KNOWN ISSUE: TF30 doesn't work - account doesn't get passed to new auth API
Diffstat (limited to 'contrib/bundle.sh')
| -rwxr-xr-x | contrib/bundle.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/bundle.sh b/contrib/bundle.sh new file mode 100755 index 0000000..e51d6bc --- /dev/null +++ b/contrib/bundle.sh @@ -0,0 +1,8 @@ +#!/bin/bash +version="$(uv tool run hatch version)" +mkdir bundle/ +uv pip install --python-version 3.9 --python-platform linux --requirements pyproject.toml --target bundle/yt_dlp_plugins/ +rm -rf bundle/yt_dlp_plugins/*.dist-info bundle/yt_dlp_plugins/bin +uv pip install --python-version 3.9 --python-platform linux --no-deps --target bundle/ . +mkdir -p dist/ +(cd bundle/ && zip -9 --recurse-paths ../dist/yt_dlp_rajiko-${version}.bundle.zip yt_dlp_plugins) |