Skip to content

Commit 1b4fe03

Browse files
committed
Use v0.1.0 for plugin SDK
1 parent d347dfa commit 1b4fe03

File tree

4 files changed

+7
-423
lines changed

4 files changed

+7
-423
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MODULE_PATH := github.com/mozilla-ai/mcpd/v2
1+
MODULE_PATH := github.com/mozilla-ai/mcpd
22

33
# /usr/local/bin is a common default for user-installed binaries
44
INSTALL_DIR := /usr/local/bin
@@ -35,7 +35,7 @@ check-licenses:
3535
@echo "Checking licenses..."
3636
@go install github.com/google/go-licenses/v2@latest
3737
@set -e; \
38-
if go-licenses check ./... --ignore github.com/mozilla-ai/mcpd/v2 --allowed_licenses=$(ALLOWED_LICENSES); then \
38+
if go-licenses check ./... --ignore github.com/mozilla-ai/mcpd --allowed_licenses=$(ALLOWED_LICENSES); then \
3939
echo "✓ All licenses are allowed."; \
4040
else \
4141
echo "License check failed: some dependencies have disallowed licenses."; \
@@ -48,7 +48,7 @@ check-notice:
4848
@go install github.com/google/go-licenses/v2@latest
4949
@tmp=$$(mktemp); \
5050
trap "rm -f $$tmp" EXIT; \
51-
go-licenses report ./... --ignore github.com/mozilla-ai/mcpd/v2 --template build/licenses/notice.tpl > $$tmp; \
51+
go-licenses report ./... --ignore github.com/mozilla-ai/mcpd --template build/licenses/notice.tpl > $$tmp; \
5252
if ! cmp -s NOTICE $$tmp; then \
5353
echo "NOTICE is out of date. Regenerate it with 'make notice'"; \
5454
exit 1; \
@@ -60,7 +60,7 @@ check-notice:
6060
notice:
6161
@echo "Generating NOTICE..."
6262
@go install github.com/google/go-licenses/v2@latest
63-
@go-licenses report ./... --ignore github.com/mozilla-ai/mcpd/v2 --template build/licenses/notice.tpl > NOTICE
63+
@go-licenses report ./... --ignore github.com/mozilla-ai/mcpd --template build/licenses/notice.tpl > NOTICE
6464
@echo "✓ NOTICE generated"
6565

6666
.PHONY: lint

0 commit comments

Comments
 (0)