Further modules included.
[yaffs-website] / web / modules / contrib / media / drupal_ti / before / before_script.sh
diff --git a/web/modules/contrib/media/drupal_ti/before/before_script.sh b/web/modules/contrib/media/drupal_ti/before/before_script.sh
new file mode 100644 (file)
index 0000000..fd08817
--- /dev/null
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+# Add an optional statement to see that this is running in Travis CI.
+echo "running drupal_ti/before/before_script.sh"
+
+set -e $DRUPAL_TI_DEBUG
+
+# Ensure the right Drupal version is installed.
+# The first time this is run, it will install Drupal.
+# Note: This function is re-entrant.
+drupal_ti_ensure_drupal
+
+# Change to the Drupal directory
+cd "$DRUPAL_TI_DRUPAL_DIR"
+
+# Create the the module directory (only necessary for D7)
+# For D7, this is sites/default/modules
+# For D8, this is modules
+mkdir -p "$DRUPAL_TI_DRUPAL_DIR/$DRUPAL_TI_LIBRARIES_PATH"
+cd "$DRUPAL_TI_DRUPAL_DIR"
+
+# Manually clone the dependencies
+mkdir libraries
+cd libraries
+git clone --depth 1 https://github.com/enyo/dropzone.git
+