diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/cli/bunx_command.zig | 5 | ||||
-rw-r--r-- | src/install/install.zig | 1 | ||||
-rw-r--r-- | src/install/lockfile.zig | 1 |
3 files changed, 2 insertions, 5 deletions
diff --git a/src/cli/bunx_command.zig b/src/cli/bunx_command.zig index 9c83c00ba..3548702ee 100644 --- a/src/cli/bunx_command.zig +++ b/src/cli/bunx_command.zig @@ -223,11 +223,10 @@ pub const BunxCommand = struct { ); var PATH = this_bundler.env.map.get("PATH").?; - const display_version: []const u8 = - if (update_request.missing_version) + const display_version = if (update_request.version.literal.isEmpty()) "latest" else - update_request.version_buf; + update_request.version.literal.slice(update_request.version_buf); const PATH_FOR_BIN_DIRS = PATH; if (PATH.len > 0) { diff --git a/src/install/install.zig b/src/install/install.zig index d5ba59c4b..99cb9213d 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -5266,7 +5266,6 @@ pub const PackageManager = struct { resolution: Resolution = .{}, resolved_name: String = .{}, is_aliased: bool = false, - missing_version: bool = false, failed: bool = false, // This must be cloned to handle when the AST store resets e_string: ?*JSAst.E.String = null, diff --git a/src/install/lockfile.zig b/src/install/lockfile.zig index b948557bf..339521c0a 100644 --- a/src/install/lockfile.zig +++ b/src/install/lockfile.zig @@ -708,7 +708,6 @@ pub fn clean(old: *Lockfile, updates: []PackageManager.UpdateRequest) !*Lockfile updates[update_i].version = dep.version; updates[update_i].resolution = resolutions[package_id]; updates[update_i].resolved_name = names[package_id]; - updates[update_i].missing_version = true; } } } |