diff options
| author | 2022-07-08 18:46:53 -0500 | |
|---|---|---|
| committer | 2022-07-08 18:46:53 -0500 | |
| commit | b0760bbab55d20da58703e054ec0ad9eaa3b8e30 (patch) | |
| tree | 2f0c9863dcfaef651014e0102f631d62f5a119cc | |
| parent | ac8bcb5edb0f2f1829aef90e2aab39e5393cc576 (diff) | |
| download | bun-b0760bbab55d20da58703e054ec0ad9eaa3b8e30.tar.gz bun-b0760bbab55d20da58703e054ec0ad9eaa3b8e30.tar.zst bun-b0760bbab55d20da58703e054ec0ad9eaa3b8e30.zip | |
fix: remove unnecessary quotes in commit message
These quotes are not necessary and appear literally in the commit
| -rw-r--r-- | src/cli/create_command.zig | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |
