| ... | @@ -1187,7 +1187,7 @@ fn initResource(f: *Fetch, uri: std.Uri, resource: *Resource, reader_buffer: []u | ... | @@ -1187,7 +1187,7 @@ fn initResource(f: *Fetch, uri: std.Uri, resource: *Resource, reader_buffer: []u |
| 1187 | if (ascii.eqlIgnoreCase(uri.scheme, "file")) { | 1187 | if (ascii.eqlIgnoreCase(uri.scheme, "file")) { |
| 1188 | const path = try uri.path.toRawMaybeAlloc(arena); | 1188 | const path = try uri.path.toRawMaybeAlloc(arena); |
| 1189 | const file = f.parent_package_root.openFile(io, path, .{}) catch |err| { | 1189 | const file = f.parent_package_root.openFile(io, path, .{}) catch |err| { |
| 1190 | return f.fail(f.location_tok, try eb.printString("unable to open '{f}{s}': {t}", .{ | 1190 | return f.fail(f.location_tok, try eb.printString("unable to open {f}/{s}: {t}", .{ |
| 1191 | f.parent_package_root, path, err, | 1191 | f.parent_package_root, path, err, |
| 1192 | })); | 1192 | })); |
| 1193 | }; | 1193 | }; |