aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErwin de Haan <EraYaN@users.noreply.github.com>2019-10-06 22:20:49 +0200
committerGitHub <noreply@github.com>2019-10-06 22:20:49 +0200
commit3925e1dcedf1ff401d4757b335b06333e62d5436 (patch)
tree675c5aacf7975c84ae10bd4f14502f0ebc9a5e5b
parentc7d1206dcb8cc1017a7cfaa62ceed56edd806788 (diff)
Fix extracted path from ffmpeg zip.
-rw-r--r--deployment/windows/build-jellyfin.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/deployment/windows/build-jellyfin.ps1 b/deployment/windows/build-jellyfin.ps1
index 9d2f034c8..7ac8a07f1 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/ffmpeg-4.0.2-win64-shared/bin" | ForEach-Object {
+ Get-ChildItem "$tempdir/ffmpeg/bin" | ForEach-Object {
Copy-Item $_.FullName -Destination $installLocation | Write-Verbose
}
}else{