I'm not sure why, but when I try to install http://drupal.org/project/media_dev - 2.x-dev with simplytest.me for some reasons the wrong modules versions get installed for that distro.

File Entity module and media module should be installed as 2.x-dev, but it is showing the 1.2 version for file_entity and media on a simplytest.me installed site.

I verified and the make file looks correct so I'm not sure what is wrong.

Thanks for making this awesome service!

Comments

patrickd’s picture

Status: Active » Closed (works as designed)

simplytest.me uses GIT to fetch and checkout all versions of contrib modules (for caching purposes), unfortunately this means that there's is no "1.x-dev" version available because there's no such tag.

A solution would be to use git in your make file directly, eg:

projects[media][download][type] = git
projects[media][download][url] = "http://git.drupal.org/project/media.git"
projects[media][download][branch] = 7.x-2.x

If you don't want to change that in your main .make file you can alternatively create a "simplytest.make" with that.

Sorry, I know that's a bit annoying but I don't see a better way to accomplish this and still have a good caching system.

gmclelland’s picture

Thanks Patrick, good to know.

gmclelland’s picture

Status: Closed (works as designed) » Active

Hi Patrick, I'm still unable to get simplytest.me to download the dev releases of the modules as you can see from #1929542: Make profile compatible with simplytest.me

Any help you can provide would be appreciated.

I have tried different combinations such as the ones you suggested, as well as this format:

projects[media][type] = module
projects[media][download][type] = git
projects[media][download][url] = "http://git.drupal.org/project/media.git"
projects[media][download][branch] = 7.x-2.x
patrickd’s picture

Status: Active » Closed (works as designed)
gmclelland’s picture

Thanks again. I will try your suggestions.