mmctl: don't add an update script

The `mattermost` or `mattermostLatest` update scripts handle this.
This commit is contained in:
Morgan Jones
2026-04-05 19:11:32 -07:00
parent e35c1c8a60
commit 98a974ecb0
+6 -2
View File
@@ -1,12 +1,16 @@
{
lib,
mattermost,
}:
mattermost.withoutTests.server.overrideAttrs (o: {
mattermost.withoutTests.server.overrideAttrs (prev: {
pname = "mmctl";
subPackages = [ "cmd/mmctl" ];
meta = o.meta // {
# `mattermost` or `mattermostLatest` handle it
passthru = lib.removeAttrs prev.passthru [ "updateScript" ];
meta = prev.meta // {
description = "Remote CLI tool for Mattermost";
mainProgram = "mmctl";
};