This commit is contained in:
Jesse Bannon 2023-02-28 16:20:29 -08:00
parent b918dfecd7
commit aa7734669c
3 changed files with 2 additions and 3 deletions

View file

@ -23,7 +23,7 @@ jobs:
- name: Run unit tests with coverage - name: Run unit tests with coverage
run: | run: |
curl.exe -o ffmpeg.zip https://github.com/yt-dlp/FFmpeg-Builds/releases/latest/download/ffmpeg-master-latest-win64-gpl.zip curl.exe -L -o ffmpeg.zip https://github.com/yt-dlp/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-win64-gpl.zip
tar -xf ffmpeg.zip tar -xf ffmpeg.zip
ls ls
move "ffmpeg-master-latest-win64-gpl\bin\ffmpeg.exe" "ffmpeg.exe" move "ffmpeg-master-latest-win64-gpl\bin\ffmpeg.exe" "ffmpeg.exe"

View file

@ -126,7 +126,6 @@ jobs:
test-plugins: test-plugins:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
needs: test-build
permissions: permissions:
contents: read contents: read

View file

@ -285,7 +285,7 @@ docker run -d \
Download and use our latest executable using the command below. For Windows users, use this method in Download and use our latest executable using the command below. For Windows users, use this method in
[WSL](https://learn.microsoft.com/en-us/windows/wsl/). FFmpeg is a required dependency. [WSL](https://learn.microsoft.com/en-us/windows/wsl/). FFmpeg is a required dependency.
```commandline ```commandline
curl -L https://github.com/jmbannon/ytdl-sub/releases/latest/download/ytdl-sub > ytdl-sub curl -L -o ytdl-sub https://github.com/jmbannon/ytdl-sub/releases/latest/download/ytdl-sub
chmod +x ytdl-sub chmod +x ytdl-sub
./ytdl-sub -h ./ytdl-sub -h
``` ```