Commit 0cc1b903 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #47 from alexbowers/patch-1

Allow TTY output from process
parents b6b9c454 59b37110
......@@ -65,6 +65,8 @@ class NewCommand extends Command
$process = new Process(implode(' && ', $commands), $directory, null, null, null);
$process->setTty(true);
$process->run(function ($type, $line) use ($output) {
$output->write($line);
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment