mirror of
https://github.com/ziglang/zig.git
synced 2024-11-26 23:22:44 +00:00
Module: fix inverted condition
This commit is contained in:
parent
8c4896fb3a
commit
c6f5832bb6
@ -4697,7 +4697,7 @@ pub fn importFile(
|
|||||||
if (!mem.startsWith(u8, resolved_path, resolved_root_path) or
|
if (!mem.startsWith(u8, resolved_path, resolved_root_path) or
|
||||||
// This prevents this check from triggering when the name of the
|
// This prevents this check from triggering when the name of the
|
||||||
// imported file starts with the root path's directory name.
|
// imported file starts with the root path's directory name.
|
||||||
std.fs.path.isSep(resolved_path[resolved_root_path.len]))
|
!std.fs.path.isSep(resolved_path[resolved_root_path.len]))
|
||||||
{
|
{
|
||||||
return error.ImportOutsidePkgPath;
|
return error.ImportOutsidePkgPath;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user