Where does homebrew install Drush?

1

Got Homebrew installed by running:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

After some problem with line endings which I got past I think I installed Drush. After running this command:

brew install --HEAD drush

And getting these results:

Error: No available formula for drush 
Searching formulae...
Searching taps...
homebrew/versions/drush4   homebrew/versions/drush5   homebrew/php/drush
my-name--MacBook-Air:~ my-name$ 

I would like to drop my aliases in the Drush folder now.

albo

Posted 2015-03-29T01:12:49.143

Reputation: 139

Which instructions did you follow for Homebrew and Drush installation? Check the links I just provided to confirm and perhaps double-check what you did.

– JakeGould – 2015-03-29T01:22:17.547

I followed Homebrew installation – albo – 2015-03-30T06:31:10.993

Answers

0

As suggested in Searching taps section, you should run:

brew tap homebrew/php/drush

Then run the install command as usual.

In the recent Homebrew, installing drush should work out-of-box:

brew install --HEAD drush

kenorb

Posted 2015-03-29T01:12:49.143

Reputation: 16 795