diff --git a/src/util/module.zig b/src/util/module.zig index 2cbf34077bc77774c7970942cfa35d8c94310748..04df5928ef9679d67a223ef6192def94c132010c 100644 --- a/src/util/module.zig +++ b/src/util/module.zig @@ -41,7 +41,7 @@ pub const Module = struct { } pub fn eql(self: Module, another: Module) bool { - return std.mem.eql(u8, self.id, another.id) or std.mem.eql(u8, self.clean_path, another.clean_path); + return std.mem.eql(u8, self.id, another.id); } pub fn get_hash(self: Module, cdpath: []const u8) ![]const u8 {