From e5e04a53c86efbe2b9da62a1adde65a234187194 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Sun, 21 Oct 2012 02:36:12 +0000 Subject: [PATCH] build: prepend /usr/local/bin in $PATH when running Bitten on OS X. --- build/run-bitten.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/build/run-bitten.sh b/build/run-bitten.sh index e3479864..7437d93f 100755 --- a/build/run-bitten.sh +++ b/build/run-bitten.sh @@ -181,6 +181,17 @@ append "" cat "$conffile" +# +# Fix system +# + +if [ "$family" = "osx" ]; then + # The version of Subversion shipped by Apple is antique; try to + # use the one in /usr/local/bin instead. + PATH="/usr/local/bin:$PATH" + export PATH +fi + # # Launch everything #