Ensure that the directory doesn't already exist
This commit is contained in:
parent
d17c1defcf
commit
0ece90c6cf
7 changed files with 217 additions and 4 deletions
14
app.php
Normal file
14
app.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
use Opdavies\DrupalModuleGenerator\Command\GenerateDrupal7Command;
|
||||
use Symfony\Component\Console\Application;
|
||||
|
||||
require_once __DIR__.'/vendor/autoload.php';
|
||||
|
||||
$app = new Application();
|
||||
|
||||
$app->addCommands([
|
||||
new GenerateDrupal7Command(),
|
||||
]);
|
||||
|
||||
$app->run();
|
Loading…
Add table
Add a link
Reference in a new issue