After I make a Profile, when I use "drush make drupal-org.make" it always says "No core project specified." I have tried to modify my .info file to include Drupal but am apparently not getting the syntax. And every tutotial I have watched online says nothing about having to do this. Any help would be appreciated. Thanks.

Comments

btopro’s picture

um, did you use profiler builder to make your profile for starters. As for the no core message, There are 2 make files generated. 1 that has the core info added (the local.make.example) and the normal make. If you add:

api = 2
core = 7.x

To the top that should work. Also make sure that any make file made by profiler_builder doesn't include "TODO" statements; sometimes it does when it's not sure what you want to do.

gettysburger’s picture

Yes, I used profiler builder to make my profile. I will make sure I used the correct one.

Hey, bro, I will have to make another trip up your way sometime to pick your brain again. And maybe I could get you down to Hagerstown to speak at our tiny but very cool monthly Drupal meetups.

http://www.meetup.com/Western-Maryland-Drupal-Users-Group/events/210772742/

btopro’s picture

if your buyin I'm sure you could find a way to do that. Especially if we can sell your school on elmsln ;)

dbt102’s picture

I'm hitting the same issue, and found this thread from 3 yrs ago

When I pass the no core flag drush make drupal-org.make --no-core then drush completes OK.

I'm using drush version "7.0-dev" I wonder if the patch from three years ago was dropped in 7.0-dev ?

btopro’s picture

have you tried building off of the local.make.example file / cleaned it up? drupal-org.make is intending to make a d.o. compliant make file which doesn't have core specified so that it auto builds against the latest provided by d.o. for security purposes.

dbt102’s picture

Thanks for the explanation. It finally sunk in what you were saying and I'm doing it right now. Its easy once you know how to do it.