Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/60fdfdcbf2eec25537eeba08dd78f0ca5dc00219?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
2 deletions
@ -1,6 +1,7 @@
$msBuild = 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\msbuild.exe'
$outputFolder = '.\_output'
$testPackageFolder = '.\_tests\'
$testSearchPattern = '*.Test\bin\x86\Release'
Function Build ( )
{
@ -56,7 +57,6 @@ Function PackageTests()
{
Write-Host Packaging Tests
if ( Test-Path $testPackageFolder )
{
Remove-Item -Recurse -Force $testPackageFolder -ErrorAction Continue
@ -69,7 +69,7 @@ Function PackageTests()
. \ . nuget \ NuGet . exe install NUnit . Runners -Version 2.6 . 1 -Output $testPackageFolder
CleanFolder $testPackageFolder
Copy-Item $outputFolder \ * . dll -Destination $testPackageFolder -Force
Copy-Item $outputFolder \ * . pdb -Destination $testPackageFolder -Force
@ -77,6 +77,8 @@ Function PackageTests()
Copy-Item . \ * . sh -Destination $testPackageFolder -Force
get-childitem $testPackageFolder -File -Filter * log . config | foreach ( $_ ) { remove-item $_ . fullname }
CleanFolder $testPackageFolder
}