From b0760bbab55d20da58703e054ec0ad9eaa3b8e30 Mon Sep 17 00:00:00 2001 From: Dorian Karter Date: Fri, 8 Jul 2022 18:46:53 -0500 Subject: fix: remove unnecessary quotes in commit message These quotes are not necessary and appear literally in the commit --- src/cli/create_command.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/cli/create_command.zig b/src/cli/create_command.zig index 5b4c214c3..03739fa50 100644 --- a/src/cli/create_command.zig +++ b/src/cli/create_command.zig @@ -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) { -- cgit v1.2.3