Some work around the Auto Updater and other small changes #1460 #865

This commit is contained in:
Jamie.Rees 2017-07-27 08:13:43 +01:00
commit 863df6e1cc
26 changed files with 303 additions and 23 deletions

View file

@ -8,4 +8,5 @@ param([String]$env='local')
$appSettingsPath = $env:APPVEYOR_BUILD_FOLDER + '\src\Ombi\appsettings.json'
$appSettings = Get-Content $appSettingsPath -raw
$appSettings = $appSettings.Replace("{{VERSIONNUMBER}}",$env:APPVEYOR_BUILD_VERSION);
$appSettings = $appSettings.Replace("{{BRANCH}}",$env:APPVEYOR_REPO_BRANCH);
Set-Content -Path $appSettingsPath -Value $appSettings