The drupal7 blueprint tries to install drush from the master branch (install.sh), which fails because the master branch has been dropped and is empty now. 8.x-6.x should be used instead...

So instead of this line:
git clone --recursive --branch master http://git.drupal.org/project/drush.git
it should be:
git clone --recursive --branch 8.x-6.x http://git.drupal.org/project/drush.git

This seems to already be fixed in the 6.x blueprint, but 8.x and 7.x still contain the first line.

Comments

ergonlogic’s picture

This works in the D8 blueprint, but probably still fails in the others. I don't think it makes sense to move to Drush 6 across the board though, as higher PHP requirements of the latest Drush won't allow D6 to run.

bforchhammer’s picture

Oh okay, so then the 7.x-5.x branch of drush would probably be the appropriate one. According to the project page that one should work for both D6 and D7.

git clone --recursive --branch 7.x-5.x http://git.drupal.org/project/drush.git

daveparrish’s picture

Status: Active » Reviewed & tested by the community
StatusFileSize
new528 bytes

#2 worked for me on Drupal 6. I created a patch for the change. Thanks for the module!

daveparrish’s picture

Status: Reviewed & tested by the community » Needs review
StatusFileSize
new1.03 KB

I added the fix from #3 to D7.