Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/1e29a2f4ee8aff3d60a5341769161e485a7ebf90
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
7 additions and
4 deletions
@ -36,7 +36,7 @@ Function Build()
Write-Host " ##teamcity[progressFinish 'Build'] "
}
Function CleanFolder($path )
Function CleanFolder($path , $keepConfigFiles )
{
Write-Host Removing XMLDoc files
get-childitem $path -File -Filter * . xml -Recurse | foreach ( $_ ) {
@ -56,8 +56,11 @@ Function CleanFolder($path)
get-childitem $path -File -Filter * . transform -Recurse | foreach ( $_ ) { remove-item $_ . fullname }
get-childitem $path -File -Filter * . dll . config -Recurse | foreach ( $_ ) { remove-item $_ . fullname }
if ( $keepConfigFiles -ne $true )
{
get-childitem $path -File -Filter * . dll . config -Recurse | foreach ( $_ ) { remove-item $_ . fullname }
}
Write-Host Removing FluentValidation . Resources files
get-childitem $path -File -Filter FluentValidation . resources . dll -recurse | foreach ( $_ ) { remove-item $_ . fullname }
@ -178,7 +181,7 @@ Function PackageTests()
get-childitem $testPackageFolder -File -Filter * log . config | foreach ( $_ ) { remove-item $_ . fullname }
CleanFolder $testPackageFolder
CleanFolder $testPackageFolder $true
Write-Host " Adding MediaInfoDotNet.dll.config (for dllmap) "
Copy-Item " $sourceFolder \MediaInfoDotNet.dll.config " -Destination $testPackageFolder -Force