We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7b8e1a commit b8efb32Copy full SHA for b8efb32
script/bootstrap
@@ -46,6 +46,21 @@ main ()
46
47
check_deps ()
48
{
49
+ # Check if Homebrew is installed
50
+ which -s brew
51
+ local result=$?
52
+
53
+ if [ "$result" -ne "0" ]
54
+ then
55
+ echo
56
+ echo "Homebrew is not installed (http://brew.sh). You will need to manually ensure the following tools are installed:"
57
+ echo " $REQUIRED_TOOLS"
58
59
+ echo "Additionally, the following libssh2 files must be symlinked under /user/local:"
60
+ echo " lib/libssh2.a include/libssh2.h include/libssh2_sftp.h include/libssh2_publickey.h"
61
+ exit $result
62
+ fi
63
64
# Ensure that we have libgit2's dependencies installed.
65
installed=`brew list`
66
0 commit comments