You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
753 B
14 lines
753 B
6 years ago
|
--- mattermost-plugin-github/Makefile 2019-04-04 12:36:13.650000000 +0200
|
||
|
+++ mattermost-plguin-github/Makefile 2019-04-04 12:40:42.030000000 +0200
|
||
|
@@ -68,8 +68,8 @@
|
||
|
ifneq ($(HAS_SERVER),)
|
||
|
mkdir -p server/dist;
|
||
|
cd server && env GOOS=linux GOARCH=amd64 $(GO) build -o dist/plugin-linux-amd64;
|
||
|
- 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=linux GOARCH=ppc64le $(GO) build -o dist/plugin-linux-ppc64le;
|
||
|
+ cd server && env GOOS=linux GOARCH=ppc64 $(GO) build -o dist/plugin-linux-ppc64;
|
||
|
endif
|
||
|
|
||
|
# webapp/.npminstall ensures NPM dependencies are installed without having to run this all the time
|