When libraries module is enabled drush_git_deploy_download() downloads the Glip library to sites/all/libraries/glip/glip when it should be in sites/all/libraries/glip
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | 1214494-1-glip_clone_location.patch | 552 bytes | fenstrat |
When libraries module is enabled drush_git_deploy_download() downloads the Glip library to sites/all/libraries/glip/glip when it should be in sites/all/libraries/glip
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | 1214494-1-glip_clone_location.patch | 552 bytes | fenstrat |
Comments
Comment #1
fenstratCorrecting this is simply a matter of removing drush_mkdir($path) because the call to git clone already creates the glip dir.
Comment #2
Freso commentedLooks good to me. At first I was thinking that the
drush_mkdir()might as well be kept, but then I realised that the directory is being created, and then "/glip" is added onto the path - which is then where the Git clone goes to, which is when the directory is being created.If anybody can confirm that this fixes it, it should be good to go.
Comment #3
bforchhammer commentedTested & Confirmed. :-)
Comment #4
Freso commentedThank you both. It has been committed and pushed.
Comment #5
fenstratThanks Freso.