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/e1f1872cb73d69221408efce9761a75d93aa6976/ci/GetRuntimeId.ps1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
[CmdletBinding()]
|
|
param (
|
|
[Parameter(Mandatory=$true)]
|
|
[string] $Arch
|
|
)
|
|
|
|
if ($IsWindows) {
|
|
"win-$Arch"
|
|
}
|
|
elseif ($IsLinux) {
|
|
"linux-$Arch"
|
|
}
|
|
elseif ($IsMacOS) {
|
|
"osx-$Arch"
|
|
}
|