diff --git a/src/Command/InitCommand.php b/src/Command/InitCommand.php index 3d8644b9..8e11b6a3 100644 --- a/src/Command/InitCommand.php +++ b/src/Command/InitCommand.php @@ -61,7 +61,7 @@ class InitCommand extends Command $template = $io->choice('Select project template', $this->recipes(), 'common'); // Repo - $default = false; + $default = ''; try { $process = Process::fromShellCommandline('git remote get-url origin'); $default = $process->mustRun()->getOutput(); @@ -86,7 +86,7 @@ class InitCommand extends Command } // Project - $default = false; + $default = ''; try { $process = Process::fromShellCommandline('basename "$PWD"'); $default = $process->mustRun()->getOutput();