From cd50b3ae0c6b96a1641eaa151c16cb015eb4242f Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Tue, 14 Apr 2026 22:43:03 +0200 Subject: [PATCH] fix: quote PowerShell path interpolation in ffmpeg copy step Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8371180..e453dea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,8 +44,8 @@ jobs: Invoke-WebRequest $ffUrl -OutFile ffmpeg.zip Expand-Archive ffmpeg.zip -DestinationPath ffmpeg-tmp $bin = Get-ChildItem -Path ffmpeg-tmp -Recurse -Filter ffmpeg.exe | Select-Object -First 1 - Copy-Item $bin.DirectoryName\ffmpeg.exe . - Copy-Item $bin.DirectoryName\ffprobe.exe . + Copy-Item "$($bin.DirectoryName)\ffmpeg.exe" . + Copy-Item "$($bin.DirectoryName)\ffprobe.exe" . - name: Fetch libmpv (Windows) if: runner.os == 'Windows'