-
-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix path directory and to create config files (#4154)
- Loading branch information
1 parent
7f023ab
commit 37aeb5d
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37aeb5d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gilbertomangones @enzolutions this seems buggy for me.
$drupal_root
is set twice with the same value, thenwe check if$directory
is true each is always true since it's a concatenation with at least the character/
then line 110 we try to create the directory$drupal_root."/".$directory
but$directory
is equal to$drupal_root.'/'.$input->getOption('directory')
so you have twice drupal_root in it.Maybe we can manage the directory argument the same it's done on the import command. I can work on that if need