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

Added: Support for Homebrew-installed mono ()

pull/3111/head
Jeff Byrnes 7 years ago committed by Leonardo Galli
parent 6c45c7db1b
commit 95fdf38662

@ -9,7 +9,11 @@ APPNAME="Radarr"
#set up environment
if [[ -x '/opt/local/bin/mono' ]]; then
# Macports and mono-supplied installer path
export PATH="/opt/local/bin:$PATH"
elif [[ -x '/usr/local/bin/mono' ]]; then
# Homebrew-supplied path to mono
export PATH="/usr/local/bin:$PATH"
fi
export DYLD_FALLBACK_LIBRARY_PATH="$DIR"

Loading…
Cancel
Save