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

20 lines
473 B

[CmdletBinding()]
param (
[Parameter(Mandatory = $true)]
[string] $PathToExe
)
$ErrorActionPreference = "Stop"
if (Get-Command chmod -errorAction SilentlyContinue) {
"The chmod command was found. Setting read + execute permission."
& chmod +rx $PathToExe
}
"Execute recyclarr command to ensure basic functionality is working"
& $PathToExe -h
if ($LASTEXITCODE -ne 0) {
"Recyclarr executable failed to run with exit code: $LASTEXITCODE"
exit -1
}