fix: quote PowerShell path interpolation in ffmpeg copy step
Build & Release / build (8cut-macos-arm64, macos-latest) (push) Has been cancelled
Build & Release / build (8cut-windows, windows-latest) (push) Has been cancelled
Build & Release / release (push) Has been cancelled

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-14 22:43:03 +02:00
parent 10b77e79f7
commit cd50b3ae0c
+2 -2
View File
@@ -44,8 +44,8 @@ jobs:
Invoke-WebRequest $ffUrl -OutFile ffmpeg.zip Invoke-WebRequest $ffUrl -OutFile ffmpeg.zip
Expand-Archive ffmpeg.zip -DestinationPath ffmpeg-tmp Expand-Archive ffmpeg.zip -DestinationPath ffmpeg-tmp
$bin = Get-ChildItem -Path ffmpeg-tmp -Recurse -Filter ffmpeg.exe | Select-Object -First 1 $bin = Get-ChildItem -Path ffmpeg-tmp -Recurse -Filter ffmpeg.exe | Select-Object -First 1
Copy-Item $bin.DirectoryName\ffmpeg.exe . Copy-Item "$($bin.DirectoryName)\ffmpeg.exe" .
Copy-Item $bin.DirectoryName\ffprobe.exe . Copy-Item "$($bin.DirectoryName)\ffprobe.exe" .
- name: Fetch libmpv (Windows) - name: Fetch libmpv (Windows)
if: runner.os == 'Windows' if: runner.os == 'Windows'