aboutsummaryrefslogtreecommitdiff
path: root/src/node_module_bundle.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-15 17:52:04 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-15 17:52:04 -0800
commit934360646fd063a84c6527eea059dc40ae0050bb (patch)
tree41d17932e07fd3230ab924b102079d84ee0403e3 /src/node_module_bundle.zig
parent98df9d7703708cc7351563b9500d6a337003c3eb (diff)
downloadbun-u/vjpr/zig-0.10.tar.gz
bun-u/vjpr/zig-0.10.tar.zst
bun-u/vjpr/zig-0.10.zip
Diffstat (limited to '')
-rw-r--r--src/node_module_bundle.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node_module_bundle.zig b/src/node_module_bundle.zig
index 37f9f9984..22ef3010a 100644
--- a/src/node_module_bundle.zig
+++ b/src/node_module_bundle.zig
@@ -174,9 +174,9 @@ pub const NodeModuleBundle = struct {
) !string {
return try std.fmt.allocPrint(
allocator,
- "{x}/{any}",
+ "{any}/{s}",
.{
- this.bundle.packages[to.package_id].hash,
+ bun.fmt.x(this.bundle.packages[to.package_id].hash),
this.str(to.path),
123,
},