From 4e766e6fd0b568ba362cb206f53ce07d4734bd45 Mon Sep 17 00:00:00 2001 From: Wouter Samaey Date: Tue, 11 Jun 2019 08:14:31 +0200 Subject: [PATCH] Moved symlinks to binaries to /usr/local/bin as /usr/bin is protected on Mac OS and meant for OS supplied binaries only (all OSes) (#148) --- helpers.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers.sh b/helpers.sh index 4b755e1..2ccd029 100755 --- a/helpers.sh +++ b/helpers.sh @@ -36,8 +36,8 @@ install_tooling() { if [ -e "$scriptname" ]; then if [ "$dependency" == "*" ] || grep -q "$dependency" "$BTCPAY_DOCKER_COMPOSE"; then chmod +x $scriptname - ln -s "$(pwd)/$scriptname" /usr/bin - echo "Installed $scriptname to /usr/bin: $comment" + ln -s "$(pwd)/$scriptname" /usr/local/bin + echo "Installed $scriptname to /usr/local/bin: $comment" fi else echo "WARNING: Script $scriptname referenced, but not existing"