Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/7f75a39752edee05d62414856706cf5ac39d593e You should set ROOT_URL correctly, otherwise the web may not work correctly.

fix powershell error during build

pull/3113/head
Keivan Beigi 11 years ago
parent 42c17e885c
commit 7f75a39752

@ -69,9 +69,12 @@ Function CleanFolder($path, $keepConfigFiles)
Write-Host Removing .less files
get-childitem $path -File -Filter *.less -Recurse | foreach ($_) {remove-item $_.fullname}
Write-Host Removing NuGet
Remove-Item -Recurse -Force "$path\NuGet"
if(Test-Path $$path\NuGet)
{
Write-Host Removing NuGet
Remove-Item -Recurse -Force "$path\NuGet"
}
Write-Host Removing Empty folders
while (Get-ChildItem $path -recurse | where {!@(Get-ChildItem -force $_.fullname)} | Test-Path)
{

Loading…
Cancel
Save