summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml2
-rwxr-xr-xtools/plugins-with-additional-packages.sh9
-rwxr-xr-xtools/s3-fetch-and-sync2
3 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 2014391..937c323 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,7 +4,7 @@ sudo: false
script:
- make docs/build-matrix.html docs/versions.json
- if [ "$GH_TOKEN" != "" ]; then ./tools/travis-push.sh; fi
- - make download -j 6 -k
+ - make download -j 6 -k MXE_PLUGIN_DIRS="$(./tools/plugins-with-additional-packages.sh)"
env:
global:
diff --git a/tools/plugins-with-additional-packages.sh b/tools/plugins-with-additional-packages.sh
new file mode 100755
index 0000000..4bdef7a
--- /dev/null
+++ b/tools/plugins-with-additional-packages.sh
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+
+# This file is part of MXE. See LICENSE.md for licensing information.
+
+# List of dirs of plugins with additional packages
+# as opposed to customisation plugins.
+# See plugins/README.md for more information.
+
+echo plugins/{apps,luarocks,native,tcl.tk}
diff --git a/tools/s3-fetch-and-sync b/tools/s3-fetch-and-sync
index 57af72c..c8f920d 100755
--- a/tools/s3-fetch-and-sync
+++ b/tools/s3-fetch-and-sync
@@ -22,7 +22,7 @@ file_issue=false
# List of plugin dirs to include in downloads
# Can't include all subdirs since some affect versions
-plugin_dirs=`echo plugins/{apps,luarocks,native,tcl.tk}`
+plugin_dirs=`./tools/plugins-with-additional-packages.sh`
cd ~/mxe && git pull