If i run drush convert-makefile old.make new.make I get the content of old.make and following error printed on my screen:
failed to open stream: No such file or directory drush_make.utilities.inc:385
and the converter stops working.
This happens because the function read in drush_make_d_o.convert.inc calls
drush_make_parse_info_file(drush_make_get_data($this->from))
but drush_make_parse_info_file($makefile) is also calling drush_make_get_data($makefile) but in this case $makefile is already the file content.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | drush_make_d_o.convert.inc-900202.patch | 904 bytes | osopolar |
Comments
Comment #1
osopolarPatch for drush_make/contrib/drush_make_d_o.drush.inc attached.
Comment #2
dmitrig01 commentedFor some reason the hunk with $this->from was already there, but I did the other one - thanks.