浏览代码

Remove /bin from ffmpeg path.

Erwin de Haan 5 年之前
父节点
当前提交
adde41c533
共有 1 个文件被更改,包括 1 次插入1 次删除
  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
     Expand-Archive "$tempdir/ffmpeg.zip" -DestinationPath "$tempdir/ffmpeg/" -Force | Write-Verbose
     if($Architecture -eq 'x64'){
     if($Architecture -eq 'x64'){
         Write-Verbose "Copying Binaries to Jellyfin location"
         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
             Copy-Item $_.FullName -Destination $installLocation | Write-Verbose
         }
         }
     }else{
     }else{