From 4e91be7c12086d6d9b3fa027642cc9c2e89de92f Mon Sep 17 00:00:00 2001 From: Dominika Liberda Date: Tue, 13 Sep 2022 16:27:24 +0200 Subject: [PATCH] - darwin, win64 --- Makefile | 2 -- plugin.json | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index ca7f0bf..22b442b 100644 --- a/Makefile +++ b/Makefile @@ -56,8 +56,6 @@ server: ifneq ($(HAS_SERVER),) mkdir -p server/dist; cd server && env GOOS=linux GOARCH=amd64 $(GO) build $(GO_BUILD_FLAGS) -o dist/plugin-linux-amd64; - cd server && env GOOS=darwin GOARCH=amd64 $(GO) build $(GO_BUILD_FLAGS) -o dist/plugin-darwin-amd64; - cd server && env GOOS=windows GOARCH=amd64 $(GO) build $(GO_BUILD_FLAGS) -o dist/plugin-windows-amd64.exe; endif ## Ensures NPM dependencies are installed without having to run this all the time. diff --git a/plugin.json b/plugin.json index 6225010..9314378 100644 --- a/plugin.json +++ b/plugin.json @@ -9,9 +9,7 @@ "min_server_version": "5.2.0", "server": { "executables": { - "linux-amd64": "server/dist/plugin-linux-amd64", - "darwin-amd64": "server/dist/plugin-darwin-amd64", - "windows-amd64": "server/dist/plugin-windows-amd64.exe" + "linux-amd64": "server/dist/plugin-linux-amd64" }, "executable": "" },