diff options
author | 2021-12-23 02:02:31 -0800 | |
---|---|---|
committer | 2021-12-23 02:02:31 -0800 | |
commit | b7e2f6c71a497a5bc4f9fd580d5fb07110001aac (patch) | |
tree | c74127fe4839593d84b204a3f5c764e01bea1ec6 /src | |
parent | e1505d88b108ce42e0cca2ba1faa2f3745ab7291 (diff) | |
download | bun-b7e2f6c71a497a5bc4f9fd580d5fb07110001aac.tar.gz bun-b7e2f6c71a497a5bc4f9fd580d5fb07110001aac.tar.zst bun-b7e2f6c71a497a5bc4f9fd580d5fb07110001aac.zip |
Don't print out bytes in error
Diffstat (limited to 'src')
-rw-r--r-- | src/install/install.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/install/install.zig b/src/install/install.zig index c57bd3ec8..4fa099bdd 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -4504,7 +4504,7 @@ pub const PackageManager = struct { .extract => |extract| { const response = task.http.response orelse { const fmt = "Failed to download package tarball for package {s}\n"; - const args = .{extract.name}; + const args = .{extract.name.slice()}; if (comptime log_level != .silent) { if (comptime log_level.showProgress()) { |