fix: remove unnecessary quotes in commit message

These quotes are not necessary and appear literally in the commit
This commit is contained in:
Dorian Karter
2022-07-08 18:46:53 -05:00
parent ac8bcb5edb
commit b0760bbab5

View File

@@ -2210,7 +2210,7 @@ const GitHandler = struct {
const git_commands = .{
&[_]string{ std.mem.span(git), "init", "--quiet" },
&[_]string{ std.mem.span(git), "add", destination, "--ignore-errors" },
&[_]string{ std.mem.span(git), "commit", "-am", "\"Initial commit (via bun create)\"", "--quiet" },
&[_]string{ std.mem.span(git), "commit", "-am", "Initial commit (via bun create)", "--quiet" },
};
if (comptime verbose) {