diff --git a/Makefile b/Makefile index a8d0b96669..4fdb0f6c97 100644 --- a/Makefile +++ b/Makefile @@ -75,6 +75,7 @@ TE_PACKAGES=$(shell go list ./...|grep -v plugin_tests) # Plugins Packages PLUGIN_PACKAGES=mattermost-plugin-zoom-v1.0.6 +PLUGIN_PACKAGES += mattermost-plugin-autolink-v1.0.0 # Prepares the enterprise build if exists. The IGNORE stuff is a hack to get the Makefile to execute the commands outside a target ifeq ($(BUILD_ENTERPRISE_READY),true) diff --git a/build/release.mk b/build/release.mk index 024ba7d4c0..9d66597261 100644 --- a/build/release.mk +++ b/build/release.mk @@ -65,8 +65,8 @@ endif @# Download prepackaged plugins mkdir -p tmpprepackaged - @for plugin_package in $(PLUGIN_PACKAGES) ; do \ - cd tmpprepackaged && curl -O -L https://plugins-store.test.mattermost.com/release/$$plugin_package.tar.gz; \ + @cd tmpprepackaged && for plugin_package in $(PLUGIN_PACKAGES) ; do \ + curl -O -L https://plugins-store.test.mattermost.com/release/$$plugin_package.tar.gz; \ done @# ----- PLATFORM SPECIFIC -----