mirror of
https://github.com/ziglang/zig.git
synced 2024-11-22 04:10:13 +00:00
zig fetch: add missing path separator in error message
Signed-off-by: Tw <tw19881113@gmail.com>
This commit is contained in:
parent
5f3a70ed5f
commit
6236e2da28
@ -609,7 +609,7 @@ fn loadManifest(f: *Fetch, pkg_root: Cache.Path) RunError!void {
|
|||||||
ast.* = try std.zig.Ast.parse(arena, manifest_bytes, .zon);
|
ast.* = try std.zig.Ast.parse(arena, manifest_bytes, .zon);
|
||||||
|
|
||||||
if (ast.errors.len > 0) {
|
if (ast.errors.len > 0) {
|
||||||
const file_path = try std.fmt.allocPrint(arena, "{}" ++ Manifest.basename, .{pkg_root});
|
const file_path = try std.fmt.allocPrint(arena, "{}" ++ fs.path.sep_str ++ Manifest.basename, .{pkg_root});
|
||||||
try std.zig.putAstErrorsIntoBundle(arena, ast.*, file_path, eb);
|
try std.zig.putAstErrorsIntoBundle(arena, ast.*, file_path, eb);
|
||||||
return error.FetchFailed;
|
return error.FetchFailed;
|
||||||
}
|
}
|
||||||
@ -783,7 +783,7 @@ fn srcLoc(
|
|||||||
const eb = &f.error_bundle;
|
const eb = &f.error_bundle;
|
||||||
const token_starts = ast.tokens.items(.start);
|
const token_starts = ast.tokens.items(.start);
|
||||||
const start_loc = ast.tokenLocation(0, tok);
|
const start_loc = ast.tokenLocation(0, tok);
|
||||||
const src_path = try eb.printString("{}" ++ Manifest.basename, .{f.parent_package_root});
|
const src_path = try eb.printString("{}" ++ fs.path.sep_str ++ Manifest.basename, .{f.parent_package_root});
|
||||||
const msg_off = 0;
|
const msg_off = 0;
|
||||||
return eb.addSourceLocation(.{
|
return eb.addSourceLocation(.{
|
||||||
.src_path = src_path,
|
.src_path = src_path,
|
||||||
|
Loading…
Reference in New Issue
Block a user