Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #6771 from EOSIO/fix_fresh_macos_16x
Browse files Browse the repository at this point in the history
Don't unlink what we install via brew - 1.6.x
  • Loading branch information
spoonincode authored Feb 19, 2019
2 parents 77b91a1 + 0cbccbb commit e093cfa
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions scripts/eosio_build_darwin.sh
Original file line number Diff line number Diff line change
@@ -161,13 +161,12 @@
printf "\\tExiting now.\\n\\n"
exit 1;
fi
if [[ "$DEP" == "llvm@4" ]]; then
"${BREW}" unlink ${DEP}
elif ! "${BREW}" unlink ${DEP} && "${BREW}" link --force ${DEP}
then
printf "\\tHomebrew exited with the above errors.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
if [ $PERMISSION_GETTEXT -eq 1 ]; then
if ! "${BREW}" link --force gettext; then
printf "\\tHomebrew exited with the above errors.\\n"
printf "\\tExiting now.\\n\\n"
exit 1;
fi
fi
break;;
[Nn]* ) echo "User aborting installation of required dependencies, Exiting now."; exit;;

0 comments on commit e093cfa

Please sign in to comment.