Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix spec compatibility with recent git versions (#854)
The original array was defining the shellwords like this: `["git", "commit", "-m", "\"Resolve", "conflicts\"", "-i", "some-file"]` This combined with the most recent git version failed with: ``` error: pathspec 'conflicts"' did not match any file(s) known to git ``` This PR just simplifies the commit message to work with the %w array literal.
- Loading branch information