| ... | @@ -41,7 +41,7 @@ pub const Module = struct { | ... | @@ -41,7 +41,7 @@ pub const Module = struct { |
| 41 | } | 41 | } |
| 42 | | 42 | |
| 43 | pub fn eql(self: Module, another: Module) bool { | 43 | pub fn eql(self: Module, another: Module) bool { |
| 44 | return std.mem.eql(u8, self.id, another.id) or std.mem.eql(u8, self.clean_path, another.clean_path); | 44 | return std.mem.eql(u8, self.id, another.id); |
| 45 | } | 45 | } |
| 46 | | 46 | |
| 47 | pub fn get_hash(self: Module, cdpath: []const u8) ![]const u8 { | 47 | pub fn get_hash(self: Module, cdpath: []const u8) ![]const u8 { |