From 8dcb4b535c9d167997de9c0d84bab20936699152 Mon Sep 17 00:00:00 2001 From: Felipe Martin Date: Wed, 6 Aug 2025 17:20:17 +0200 Subject: [PATCH] pluginctl: updated to 0.1.3 --- .golangci.yml | 1 - build/build.mk | 7 +++++++ plugin.json | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 8c2d951..e2b0f7c 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -11,7 +11,6 @@ linters: - nakedret - revive - staticcheck # Now includes gosimple and stylecheck - - typecheck - unconvert - unused - whitespace diff --git a/build/build.mk b/build/build.mk index 19b83ec..22cec48 100644 --- a/build/build.mk +++ b/build/build.mk @@ -11,9 +11,16 @@ all: check-style test dist manifest-check: pluginctl manifest check +## Cleans the server build artifacts. +.PHONY: clean-server +clean-server: +ifneq ($(HAS_SERVER),) + rm -rf server/dist +endif ## Builds the server, if it exists, for all supported architectures, unless MM_SERVICESETTINGS_ENABLEDEVELOPER is set. .PHONY: server +server: clean-server server: ifneq ($(HAS_SERVER),) ifneq ($(MM_DEBUG),) diff --git a/plugin.json b/plugin.json index 4a1f690..6cbc9a8 100644 --- a/plugin.json +++ b/plugin.json @@ -99,7 +99,7 @@ }, "props": { "pluginctl": { - "version": "v0.1.2" + "version": "v0.1.3" } } } \ No newline at end of file