Skip to content

Commit

Permalink
Add arm64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
parnic-sks committed Oct 13, 2020
1 parent 9140a1f commit fded1f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion server/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -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": "",
Expand Down

0 comments on commit fded1f0

Please sign in to comment.