Here's my problem. I made a simple Feature file, which I want to use by downloading it from my feature server.
For some reason, when unpacking the feature tar-ball, it only unpacks the feature.inc file. The rest is left out. Other feature modules, such as some from de development seed server work fine.
Regardless of what I do, the drupal make keeps only unpacking the .inc file.
Where is the flaw?
| Comment | File | Size | Author |
|---|---|---|---|
| #12 | debug_report.txt | 40.97 KB | pitolek |
| #5 | test-6.x-1.0-beta1.tgz | 738 bytes | pitolek |
Comments
Comment #1
dmitrig01 commentedPlease post the output of running the drush make command with --debug
Comment #2
pitolek commentedOk, here it is ...
Comment #3
pitolek commentedJust posted my debug report. Just checked the contents of both feature files, and as it looks the feature file that DOES work, contains a first line of the folder that contains the rest of the files. The make command later moves that folder, being the first in the tar file. In the feature file that doesn't work, the first file is the .inc file, which is then the only one moved ...
Does this help?
Comment #4
dmitrig01 commentedcan you upload the tar file or post it somewhere where I can see it?
Comment #5
pitolek commentedNo problem ...
Comment #6
pitolek commentedComment #7
dmitrig01 commentedSo what's happening is it executes this command:
tar -tf '/tmp/drush_make_tmp_1258445588/test_feature-6.x-1.0-alfa2.tar'
On most systems, the first line will be a directory name, and then lists of files. But for some reason on your system it's not doing that. I added a fix, so now it should work. Try checking out the latest 6.x-2.x-dev version from CVS:
cvs -z6 -d:pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib checkout -r DRUPAL-6--2 -d drush_make contributions/modules/drush_makeComment #8
dmitrig01 commentedfeel free to re-mark as active
Comment #9
pitolek commentedUnfortunately, output en debug info is exactly the same ... any more info you might need?
Comment #10
dmitrig01 commentedare you sure you checked out the latest version and put it in the right directory? Please post the new debug info (just to verify)
Comment #11
dmitrig01 commentedI forgot to commit it :D Should be committed now
Comment #12
pitolek commentedThanks for still committing it :-) The output is anyway different, the modules are now moved next to the drupal install. So it makes the following structure ...
I attach the debug info for you, hope it helps ...
Comment #13
dmitrig01 commentedIt looks like it should be working. Unfortunately at the moment we encounter a problem where the core project needs to be listed first in the makefile, try that (will commit a fix soon).
Comment #14
pitolek commentedFunny thing is they are in that order. Content of my test make file is:
Looks like it reads it back in reversed order ...
But thanks so far!
Comment #15
dmitrig01 commentedTry now (you have to
cvs up -CPRd).Comment #16
pitolek commentedWorks like a charm ... thanks!