I'm experiencing a really weird phenomenon:

I am building a site using drush make. The .make file references better_exposed_filters like this:
projects[better_exposed_filters][subdir] = "contrib"
projects[better_exposed_filters][version] = "3.2"

When making the site, version 3.2 is correctly downloaded. Or at least it seems so; the .info file says "3.2", but the code is not the same as when I manually download version 3.2 from drupal.org.
So, it seems that I get one version 3.2 when using drush make and one version 3.2 when downloading manually(?!)

What can be happening here?

Comments

mikeker’s picture

Status: Active » Postponed (maintainer needs more info)

I just tried using drush to download BEF vs the tarball posted on drupal.org and they are the same. (Granted, I wasn't using drush make, but I believe it uses drush dl behind the scenes.

Can you let me know what differences you're seeing?

atolborg’s picture

As you can see, I get different modules depending on whether I use drush make or drush dl
It's really weird! I am only experiencing this with better_exposed_filters.

====================================================
This is the content of the .info file when downloading via make file:
====================================================
; $Id
name = Better Exposed Filters
description = Allow the use of checkboxes or radio buttons for exposed Views filters
core = 7.x
package = Views
dependencies[] = views
files[] = better_exposed_filters_exposed_form_plugin.inc

; Information added by drush on 2015-06-11
version = "7.x-3.2"
core = "7.x"
project = "better_exposed_filters"
datestamp = "1434021874"

====================================================
This is the content of the .info file when downloading using drush dl
====================================================
; $Id
name = Better Exposed Filters
description = Allow the use of checkboxes or radio buttons for exposed Views filters
core = 7.x
package = Views
dependencies[] = views
files[] = better_exposed_filters_exposed_form_plugin.inc
files[] = tests/better_exposed_filters.test

; Information added by Drupal.org packaging script on 2015-04-03
version = "7.x-3.2"
core = "7.x"
project = "better_exposed_filters"
datestamp = "1428077889"

mikeker’s picture

That's very strange... Can you post the relevant part of your make file as well?

Thanks for the followup.

mikeker’s picture

Status: Postponed (maintainer needs more info) » Closed (cannot reproduce)