diff --git a/Makefile b/Makefile index 0c1cdf5..545ccff 100644 --- a/Makefile +++ b/Makefile @@ -70,6 +70,7 @@ ifneq ($(HAS_SERVER),) cd server && env GOOS=darwin GOARCH=amd64 $(GO) build -o dist/plugin-darwin-amd64; cd server && env GOOS=windows GOARCH=amd64 $(GO) build -o dist/plugin-windows-amd64.exe; cd server && env GOOS=freebsd GOARCH=amd64 $(GO) build -o dist/plugin-freebsd-amd64.exe; + cd server && env GOOS=linux GOARCH=arm64 $(GO) build -o dist/plugin-linux-arm64; endif ## Ensures NPM dependencies are installed without having to run this all the time. diff --git a/plugin.json b/plugin.json index b8e1663..08633f8 100644 --- a/plugin.json +++ b/plugin.json @@ -14,7 +14,7 @@ "darwin-amd64": "server/dist/plugin-darwin-amd64", "windows-amd64": "server/dist/plugin-windows-amd64.exe" }, - "executable": "server/dist/plugin-freebsd-amd64.exe" + "executable": "server/dist/plugin-linux-arm64" }, "settings_schema": { "settings": [ diff --git a/server/manifest.go b/server/manifest.go index c8d4e95..1c4fb02 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -27,7 +27,7 @@ const manifestStr = ` "darwin-amd64": "server/dist/plugin-darwin-amd64", "windows-amd64": "server/dist/plugin-windows-amd64.exe" }, - "executable": "server/dist/plugin-freebsd-amd64.exe" + "executable": "server/dist/plugin-linux-arm64" }, "settings_schema": { "header": "",