mirror of
https://github.com/SmartHoneybee/ubiquitous-memory
synced 2025-04-29 23:29:39 +02:00
Bump github.com/mattermost/mattermost-server/v5 in /dependabot Bumps [github.com/mattermost/mattermost-server/v5](https://github.com/mattermost/mattermost-server) from 5.19.1 to 5.20.0. - [Release notes](https://github.com/mattermost/mattermost-server/releases) - [Changelog](https://github.com/mattermost/mattermost-server/blob/master/CHANGELOG.md) - [Commits](https://github.com/mattermost/mattermost-server/compare/v5.19.1...v5.20.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
43 lines
1.3 KiB
Diff
43 lines
1.3 KiB
Diff
From 556e16211ed1b4c146ca2a094688618458182ae7 Mon Sep 17 00:00:00 2001
|
|
From: Your Name <you@example.com>
|
|
Date: Wed, 6 Jun 2018 12:34:56 +0100
|
|
Subject: [PATCH] Split make goal
|
|
|
|
---
|
|
build/release.mk | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/build/release.mk b/build/release.mk
|
|
index 238343e..1b7859f 100644
|
|
--- a/build/release.mk
|
|
+++ b/build/release.mk
|
|
@@ -77,7 +77,7 @@ endif
|
|
|
|
|
|
@# ----- PLATFORM SPECIFIC -----
|
|
-
|
|
+_:
|
|
@# Make osx package
|
|
@# Copy binary
|
|
ifeq ($(BUILDER_GOOS_GOARCH),"darwin_amd64")
|
|
@@ -145,7 +145,7 @@ endif
|
|
rm -f $(DIST_PATH)/bin/platform.exe
|
|
rm -f $(DIST_PATH)/bin/mmctl.exe
|
|
rm -f $(DIST_PATH)/prepackaged_plugins/*
|
|
-
|
|
+package-linux: package
|
|
@# Make linux package
|
|
@# Copy binary
|
|
ifeq ($(BUILDER_GOOS_GOARCH),"linux_amd64")
|
|
@@ -155,7 +155,7 @@ else
|
|
cp $(GOPATH)/bin/linux_amd64/mattermost $(DIST_PATH)/bin # from cross-compiled bin dir
|
|
cp $(GOPATH)/bin/linux_amd64/platform $(DIST_PATH)/bin # from cross-compiled bin dir
|
|
endif
|
|
- MMCTL_FILE="linux_amd64.tar" && curl -f -O -L https://github.com/mattermost/mmctl/releases/download/$(MMCTL_REL_TO_DOWNLOAD)/$$MMCTL_FILE && tar -xvf $$MMCTL_FILE -C $(DIST_PATH)/bin && rm $$MMCTL_FILE
|
|
+
|
|
@# Prepackage plugins
|
|
@for plugin_package in $(PLUGIN_PACKAGES) ; do \
|
|
ARCH="linux-amd64"; \
|
|
--
|
|
2.11.0
|