aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-07-27 21:20:45 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-07-27 21:20:45 -0700
commitbd547ace80f007b6f6b5dc1b1b68a863cae5460b (patch)
treef413e7a18ac7562a23b7a75cb645d02665c481a0 /src
parent194a5c896e4b546fa79cf7d485b8dbc7af96f173 (diff)
downloadbun-bd547ace80f007b6f6b5dc1b1b68a863cae5460b.tar.gz
bun-bd547ace80f007b6f6b5dc1b1b68a863cae5460b.tar.zst
bun-bd547ace80f007b6f6b5dc1b1b68a863cae5460b.zip
[misc] Replace reference to old repo
Diffstat (limited to 'src')
-rw-r--r--src/cli/create_command.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cli/create_command.zig b/src/cli/create_command.zig
index e2a3088ca..94ea76e25 100644
--- a/src/cli/create_command.zig
+++ b/src/cli/create_command.zig
@@ -144,7 +144,7 @@ fn execTask(allocator: std.mem.Allocator, task_: string, cwd: string, _: string,
Output.disableBuffering();
defer Output.enableBuffering();
- proc = std.ChildProcess.init(argv, allocator) ;
+ proc = std.ChildProcess.init(argv, allocator);
proc.stdin_behavior = .Inherit;
proc.stdout_behavior = .Inherit;
proc.stderr_behavior = .Inherit;
@@ -2103,12 +2103,12 @@ pub const CreateListExamplesCommand = struct {
if (env_loader.map.get("HOME")) |homedir| {
Output.prettyln(
- "<d>This command is completely optional. To add a new local template, create a folder in {s}/.bun-create/. To publish a new template, git clone https://github.com/jarred-sumner/bun, add a new folder to the \"examples\" folder, and submit a PR.<r>",
+ "<d>This command is completely optional. To add a new local template, create a folder in {s}/.bun-create/. To publish a new template, git clone https://github.com/oven-sh/bun, add a new folder to the \"examples\" folder, and submit a PR.<r>",
.{homedir},
);
} else {
Output.prettyln(
- "<d>This command is completely optional. To add a new local template, create a folder in $HOME/.bun-create/. To publish a new template, git clone https://github.com/jarred-sumner/bun, add a new folder to the \"examples\" folder, and submit a PR.<r>",
+ "<d>This command is completely optional. To add a new local template, create a folder in $HOME/.bun-create/. To publish a new template, git clone https://github.com/oven-sh/bun, add a new folder to the \"examples\" folder, and submit a PR.<r>",
.{},
);
}