Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/2001e5f502fc1c0ae137427e4ded84e4b4f8906f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
4 deletions
@ -22,7 +22,7 @@
<DebugSymbols > true</DebugSymbols>
<DebugType > full</DebugType>
<Optimize > false</Optimize>
<OutputPath > bin\Debug \</OutputPath>
<OutputPath > ..\_output\NzbDrone.Update \</OutputPath>
<DefineConstants > DEBUG;TRACE</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
@ -31,7 +31,7 @@
<PlatformTarget > x86</PlatformTarget>
<DebugType > pdbonly</DebugType>
<Optimize > true</Optimize>
<OutputPath > bin\Releas e\</OutputPath>
<OutputPath > ..\_output\NzbDrone.Updat e\</OutputPath>
<DefineConstants > TRACE</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
@ -26,12 +26,12 @@ Function Build()
Function CleanFolder($path )
{
Write-Host Removing XMLDoc files
get-childitem $path -File -Filter * . xml | foreach ( $_ ) { remove-item $_ . fullname }
get-childitem $path -File -Filter * . xml -Recurse | foreach ( $_ ) { remove-item $_ . fullname }
Write-Host Removing FluentValidation . Resources files
get-childitem $path -File -Filter FluentValidation . resources . dll -recurse | foreach ( $_ ) { remove-item $_ . fullname }
get-childitem $path -File -Filter app . config | foreach ( $_ ) { remove-item $_ . fullname }
get-childitem $path -File -Filter app . config -Recurse | foreach ( $_ ) { remove-item $_ . fullname }
Write-Host Removing Empty folders
while ( Get-ChildItem $path -recurse | where { ! @ ( Get-ChildItem -force $_ . fullname ) } | Test-Path )