Explorar o código

Remove /bin from ffmpeg path.

Erwin de Haan %!s(int64=5) %!d(string=hai) anos
pai
achega
adde41c533
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      deployment/windows/build-jellyfin.ps1

+ 1 - 1
deployment/windows/build-jellyfin.ps1

@@ -60,7 +60,7 @@ function Install-FFMPEG {
     Expand-Archive "$tempdir/ffmpeg.zip" -DestinationPath "$tempdir/ffmpeg/" -Force | Write-Verbose
     if($Architecture -eq 'x64'){
         Write-Verbose "Copying Binaries to Jellyfin location"
-        Get-ChildItem "$tempdir/ffmpeg/bin" | ForEach-Object {
+        Get-ChildItem "$tempdir/ffmpeg" | ForEach-Object {
             Copy-Item $_.FullName -Destination $installLocation | Write-Verbose
         }
     }else{