diff --git a/tasks/git.php b/tasks/git.php index 666391d..e06925e 100644 --- a/tasks/git.php +++ b/tasks/git.php @@ -48,7 +48,8 @@ if (\is_string($issues)) { $output .= "\n\n" . \wordwrap($issues, $crop); } - runLocally("git commit -m '$output'"); + $output = str_replace('"', '\"', $output); + runLocally("git commit -m \"$output\""); writeln(' '); })->once()->shallow();