From 95fdf38662ae1b52558ac993d98c9f9dd9a85e32 Mon Sep 17 00:00:00 2001 From: Jeff Byrnes Date: Sat, 20 Oct 2018 13:38:32 -0400 Subject: [PATCH] Added: Support for Homebrew-installed mono (#3090) --- osx/Radarr | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/osx/Radarr b/osx/Radarr index 7933f3893..d9c88956a 100644 --- a/osx/Radarr +++ b/osx/Radarr @@ -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"