Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/2f271635f9f6fd03efe3650136853c0e2c9eae55
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
13 additions and
7 deletions
@ -8,8 +8,11 @@ jobs:
- checkout
- run : git submodule update --init --recursive
- run:
name : Prepare Build
command : ./build.sh PrepareBuild
name : Clean Build
command : ./build.sh Clean
- run:
name : Restore Nuget
command : ./build.sh NugetMono
- run:
name : Build
command : ./build.sh Build
@ -277,27 +277,30 @@ if [ $# -eq 0 ]
PackageOsxApp
PackageTests
CleanupWindowsPackage
exit 0
fi
if [ " $1 " -eq "PrepareB uild" ]
if [ " $1 " = "CleanXb uild" ]
then rm -rf $outputFolder
CleanWithXbuild
fi
if [ " $1 " = "NugetMono" ]
then rm -rf $outputFolder
RestoreNuget
fi
if [ " $1 " -eq "Build" ]
if [ " $1 " = "Build" ]
then BuildWithXbuild
CleanFolder $outputFolder false
AddJsonNet
rm $outputFolder /Mono.Posix.dll
fi
if [ " $1 " -eq "Gulp" ]
if [ " $1 " = "Gulp" ]
then RunGulp
fi
if [ " $1 " -eq "Package" ]
if [ " $1 " = "Package" ]
then PackageMono
PackageOsx
PackageOsxApp