diff options
author | 2022-03-18 15:55:33 -0700 | |
---|---|---|
committer | 2022-03-18 15:55:33 -0700 | |
commit | 475304c3f56205a626bb7eefbaee1b36a8820ffb (patch) | |
tree | a61e7e0380f9f681ab0ad245405374e8a8087b1e /src | |
parent | 5d39d3a3b225930f3f469268925300cbb1a37e70 (diff) | |
download | bun-475304c3f56205a626bb7eefbaee1b36a8820ffb.tar.gz bun-475304c3f56205a626bb7eefbaee1b36a8820ffb.tar.zst bun-475304c3f56205a626bb7eefbaee1b36a8820ffb.zip |
[bun run] fix missing space
Diffstat (limited to 'src')
-rw-r--r-- | src/cli/run_command.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/run_command.zig b/src/cli/run_command.zig index 11f55224a..bb96aaf6e 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) { |