Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / config / scenarios / install
diff --git a/vendor/consolidation/config/scenarios/install b/vendor/consolidation/config/scenarios/install
deleted file mode 100755 (executable)
index e921ec0..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-
-SCENARIO=$1
-ACTION=${2-install}
-
-dir=scenarios/${SCENARIO}
-if [ -z "$SCENARIO" ] ; then
-  SCENARIO=default
-  dir=.
-fi
-
-
-if [ ! -d "$dir" ] ; then
-  echo "Requested scenario '${SCENARIO}' does not exist."
-  exit 1
-fi
-
-echo
-echo "::"
-echo ":: Switch to ${SCENARIO} scenario"
-echo "::"
-echo
-
-set -ex
-
-composer -n validate --working-dir=$dir --no-check-all --ansi
-composer -n --working-dir=$dir ${ACTION} --prefer-dist --no-scripts
-composer -n --working-dir=$dir info