fix: quote PowerShell path interpolation in ffmpeg copy step
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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'
|
||||||
|
|||||||
Reference in New Issue
Block a user