diff --git a/src/Openl10n/Cli/Command/InitCommand.php b/src/Openl10n/Cli/Command/InitCommand.php index 03bf7bb..5d175d5 100644 --- a/src/Openl10n/Cli/Command/InitCommand.php +++ b/src/Openl10n/Cli/Command/InitCommand.php @@ -153,6 +153,9 @@ function ($answer) { $defaultLocale = $dialog->ask($output, "Default locale [en]: ", 'en'); $project->setDefaultLocale($defaultLocale); + $description = $dialog->ask($output, "Description []: "); + $project->setDescription($description); + try { $projectApi->create($project); } catch (\Exception $e) {