This commit is contained in:
ethernet 2026-06-15 13:26:15 -04:00
parent d33975816b
commit 5ebc28516e

View File

@ -187,9 +187,9 @@ jobs:
if: always()
shell: pwsh
run: |
$pid = Get-Content ffmpeg.pid -ErrorAction SilentlyContinue
if ($pid) {
Stop-Process -Id $pid -ErrorAction SilentlyContinue
$ffmpeg-pid = Get-Content ffmpeg.pid -ErrorAction SilentlyContinue
if ($ffmpeg-pid) {
Stop-Process -Id $ffmpeg-pid -ErrorAction SilentlyContinue
Start-Sleep -Seconds 2
}