aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-02-20 15:38:43 -0500
committerGitHub <noreply@github.com>2019-02-20 15:38:43 -0500
commitaffb8c8673c930ee425ceea3d25b0893ea6c5188 (patch)
treedeb64fea4bc615565081cfc02e78f9529c827da7
parentd4ded281aab1913c5726ce76d1954ece81baf044 (diff)
parent74aa38acd7e19600eca7ba0a2b7588067c9113d2 (diff)
Merge pull request #962 from scheidleon/fix-windows-build
Fix Path
-rw-r--r--deployment/windows/build-jellyfin.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/deployment/windows/build-jellyfin.ps1 b/deployment/windows/build-jellyfin.ps1
index 1121c3398..2c83f264c 100644
--- a/deployment/windows/build-jellyfin.ps1
+++ b/deployment/windows/build-jellyfin.ps1
@@ -102,8 +102,8 @@ if($InstallNSSM.IsPresent -or ($InstallNSSM -eq $true)){
Write-Verbose "Starting NSSM Install"
Install-NSSM $InstallLocation $Architecture
}
-Copy-Item .\deployment\win-generic\install-jellyfin.ps1 $InstallLocation\install-jellyfin.ps1
-Copy-Item .\deployment\win-generic\install.bat $InstallLocation\install.bat
+Copy-Item .\deployment\windows\install-jellyfin.ps1 $InstallLocation\install-jellyfin.ps1
+Copy-Item .\deployment\windows\install.bat $InstallLocation\install.bat
if($GenerateZip.IsPresent -or ($GenerateZip -eq $true)){
Compress-Archive -Path $InstallLocation -DestinationPath "$InstallLocation/jellyfin.zip" -Force
}