From 418972b42360e6c48f104aff1deaa75b54d7de39 Mon Sep 17 00:00:00 2001 From: Aurora Luna Takemi <98479040+auroraisluna@users.noreply.github.com> Date: Mon, 11 Jul 2022 05:37:30 +0300 Subject: Update GitHub URL to match new repo URL (#547) * Update repo URLs * GitHub URL update * Revert accidental URL changes --- src/bun.js/api/FFI.h | 2 +- src/cli/install.sh | 2 +- src/cli/upgrade_command.zig | 2 +- src/env_loader.zig | 2 +- src/install/install.zig | 2 +- src/js_parser.zig | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/bun.js/api/FFI.h b/src/bun.js/api/FFI.h index b0a754a01..84a2dad83 100644 --- a/src/bun.js/api/FFI.h +++ b/src/bun.js/api/FFI.h @@ -1,6 +1,6 @@ // This file is part of Bun! // You can find the original source: -// https://github.com/Jarred-Sumner/bun/blob/main/src/bun.js/api/FFI.h#L2 +// https://github.com/oven-sh/bun/blob/main/src/bun.js/api/FFI.h#L2 // // clang-format off // This file is only compatible with 64 bit CPUs diff --git a/src/cli/install.sh b/src/cli/install.sh index 269513295..5d2577d72 100644 --- a/src/cli/install.sh +++ b/src/cli/install.sh @@ -30,7 +30,7 @@ if test -t 1; then fi if ! command -v unzip >/dev/null; then - echo -e "\n${Red}error${Color_Off}: unzip is required to install bun (see: https://github.com/Jarred-Sumner/bun#unzip-is-required)." 1>&2 + echo -e "\n${Red}error${Color_Off}: unzip is required to install bun (see: https://github.com/oven-sh/bun#unzip-is-required)." 1>&2 exit 1 fi diff --git a/src/cli/upgrade_command.zig b/src/cli/upgrade_command.zig index aafbd7e18..a64985bbb 100644 --- a/src/cli/upgrade_command.zig +++ b/src/cli/upgrade_command.zig @@ -583,7 +583,7 @@ pub const UpgradeCommand = struct { Output.printStartEnd(ctx.start_time, std.time.nanoTimestamp()); - Output.prettyErrorln(" Upgraded.\n\nWelcome to bun v{s}!\n\n Report any bugs:\n https://github.com/Jarred-Sumner/bun/issues\n\n What's new:\n https://github.com/Jarred-Sumner/bun/releases/tag/{s}", .{ version_name, version.tag }); + Output.prettyErrorln(" Upgraded.\n\nWelcome to bun v{s}!\n\n Report any bugs:\n https://github.com/oven-sh/bun/issues\n\n What's new:\n https://github.com/oven-sh/bun/releases/tag/{s}", .{ version_name, version.tag }); Output.flush(); return; } diff --git a/src/env_loader.zig b/src/env_loader.zig index 41bb7e804..afd7fa9ff 100644 --- a/src/env_loader.zig +++ b/src/env_loader.zig @@ -298,7 +298,7 @@ pub const Lexer = struct { // we don't need to do special parsing on process-level environment variable values // if they're quoted, we should keep them quoted. - // https://github.com/Jarred-Sumner/bun/issues/40 + // https://github.com/oven-sh/bun/issues/40 if (comptime is_process_env) { const current = this.current; // TODO: remove this loop diff --git a/src/install/install.zig b/src/install/install.zig index fb53b8ecc..68b9c422a 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -186,7 +186,7 @@ const NetworkTask = struct { } // We must use a less restrictive Acccept header value - // https://github.com/Jarred-Sumner/bun/issues/341 + // https://github.com/oven-sh/bun/issues/341 // https://www.jfrog.com/jira/browse/RTFACT-18398 const accept_header_value = "application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"; diff --git a/src/js_parser.zig b/src/js_parser.zig index 23a945bbe..34e4b3a9f 100644 --- a/src/js_parser.zig +++ b/src/js_parser.zig @@ -16044,7 +16044,7 @@ fn NewParser_( return; }, .s_class => |class| { - // TODO: https://github.com/Jarred-Sumner/bun/issues/51 + // TODO: https://github.com/oven-sh/bun/issues/51 _ = p.visitClass(s2.loc, &class.class); if (p.is_control_flow_dead) @@ -17175,7 +17175,7 @@ fn NewParser_( stmts.append(closure) catch unreachable; } - // TODO: https://github.com/Jarred-Sumner/bun/issues/51 + // TODO: https://github.com/oven-sh/bun/issues/51 fn lowerClass( p: *P, stmtorexpr: js_ast.StmtOrExpr, -- cgit v1.2.3