| author | |
| committer | |
| log | f84befd494dbbcd6f76845456103169acc18b253 |
| tree | ed81ebbc8e9f1cd1a6cbd5ffc5c57e5fec7cd2de |
| parent | cceff1ebece47368b827ec426c5dca230142ff3d |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
src/util/module.zig+1-1| ... | ... | @@ -41,7 +41,7 @@ pub const Module = struct { |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | pub fn eql(self: Module, another: Module) bool { |
| 44 | return std.mem.eql(u8, self.clean_path, another.clean_path); | |
| 44 | return std.mem.eql(u8, self.id, another.id) or std.mem.eql(u8, self.clean_path, another.clean_path); | |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | pub fn get_hash(self: Module, cdpath: []const u8) ![]const u8 { |