From 475304c3f56205a626bb7eefbaee1b36a8820ffb Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Fri, 18 Mar 2022 15:55:33 -0700 Subject: [PATCH] [bun run] fix missing space --- src/cli/run_command.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/run_command.zig b/src/cli/run_command.zig index 11f55224ab..bb96aaf6ea 100644 --- a/src/cli/run_command.zig +++ b/src/cli/run_command.zig @@ -791,7 +791,7 @@ pub const RunCommand = struct { // the use of npm/? is copying yarn // e.g. // > "yarn/1.22.4 npm/? node/v12.16.3 darwin x64", - "bun/" ++ Global.package_json_version ++ "npm/? node/v16.14.0 " ++ Global.os_name ++ " " ++ Global.arch_name, + "bun/" ++ Global.package_json_version ++ " npm/? node/v16.14.0 " ++ Global.os_name ++ " " ++ Global.arch_name, ) catch unreachable; if (this_bundler.env.get("npm_execpath") == null) {