diff --git a/src/util/dep_type.zig b/src/util/dep_type.zig index 8a1c63961090f6228fdd659780831e5c6e5376ca..adf4b0cb41e70962ac209e206c2682dd0b37f961 100644 --- a/src/util/dep_type.zig +++ b/src/util/dep_type.zig @@ -15,9 +15,6 @@ pub const DepType = enum { _ = try u.run_cmd(null, &[_][]const u8{"git", "clone", rpath, dpath}); }, .hg => { _ = try u.run_cmd(null, &[_][]const u8{"hg", "clone", rpath, dpath}); }, - else => { - u.assert(false, "dep type {} not configured for pull: {}", .{@tagName(self), rpath}); - }, } } @@ -29,9 +26,6 @@ pub const DepType = enum { _ = try u.run_cmd(dpath, &[_][]const u8{"git", "pull"}); }, .hg => { _ = try u.run_cmd(dpath, &[_][]const u8{"hg", "pull"}); }, - else => { - u.assert(false, "dep type {} not configured for update: {}", .{@tagName(self), rpath}); - }, } } };