diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-10-06 22:26:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-06 22:26:17 +0200 |
| commit | adde41c53377ab57c47fbb8afedd0888a437cc1e (patch) | |
| tree | 2f5f5707af33fb9a30fed5ec9b8c1d664297df33 /deployment | |
| parent | 3925e1dcedf1ff401d4757b335b06333e62d5436 (diff) | |
Remove /bin from ffmpeg path.
Diffstat (limited to 'deployment')
| -rw-r--r-- | deployment/windows/build-jellyfin.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deployment/windows/build-jellyfin.ps1 b/deployment/windows/build-jellyfin.ps1 index 7ac8a07f1..c4fb4b995 100644 --- a/deployment/windows/build-jellyfin.ps1 +++ b/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{ |
