diff options
| author | crankdoofus <52436708+crankdoofus@users.noreply.github.com> | 2019-07-06 18:02:00 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-06 18:02:00 +1000 |
| commit | dc3eceec6a4be9c382cebfe22d8f820dfec5b4af (patch) | |
| tree | 24835dd3f08aaa03bd898dabb513c66b14846760 | |
| parent | a6819ffd1d7ed36f88316d7bfe82cf2e1979bd68 (diff) | |
Changed order to include install scripts in installer
| -rw-r--r-- | deployment/windows/build-jellyfin.ps1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deployment/windows/build-jellyfin.ps1 b/deployment/windows/build-jellyfin.ps1 index 7b04c9310..9a6be81d0 100644 --- a/deployment/windows/build-jellyfin.ps1 +++ b/deployment/windows/build-jellyfin.ps1 @@ -125,12 +125,12 @@ if($InstallNSSM.IsPresent -or ($InstallNSSM -eq $true)){ Write-Verbose "Starting NSSM Install" Install-NSSM $InstallLocation $Architecture } +Copy-Item .\deployment\windows\install-jellyfin.ps1 $InstallLocation\install-jellyfin.ps1 +Copy-Item .\deployment\windows\install.bat $InstallLocation\install.bat if($MakeNSIS.IsPresent -or ($MakeNSIS -eq $true)){ Write-Verbose "Starting NSIS Package creation" Make-NSIS $InstallLocation } -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 } |
