pluginctl: updated to 0.1.3
This commit is contained in:
parent
d9c0215b93
commit
8dcb4b535c
3 changed files with 8 additions and 2 deletions
|
@ -11,7 +11,6 @@ linters:
|
||||||
- nakedret
|
- nakedret
|
||||||
- revive
|
- revive
|
||||||
- staticcheck # Now includes gosimple and stylecheck
|
- staticcheck # Now includes gosimple and stylecheck
|
||||||
- typecheck
|
|
||||||
- unconvert
|
- unconvert
|
||||||
- unused
|
- unused
|
||||||
- whitespace
|
- whitespace
|
||||||
|
|
|
@ -11,9 +11,16 @@ all: check-style test dist
|
||||||
manifest-check:
|
manifest-check:
|
||||||
pluginctl 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.
|
## Builds the server, if it exists, for all supported architectures, unless MM_SERVICESETTINGS_ENABLEDEVELOPER is set.
|
||||||
.PHONY: server
|
.PHONY: server
|
||||||
|
server: clean-server
|
||||||
server:
|
server:
|
||||||
ifneq ($(HAS_SERVER),)
|
ifneq ($(HAS_SERVER),)
|
||||||
ifneq ($(MM_DEBUG),)
|
ifneq ($(MM_DEBUG),)
|
||||||
|
|
|
@ -99,7 +99,7 @@
|
||||||
},
|
},
|
||||||
"props": {
|
"props": {
|
||||||
"pluginctl": {
|
"pluginctl": {
|
||||||
"version": "v0.1.2"
|
"version": "v0.1.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue