16 lines
333 B
Bash
Executable file
16 lines
333 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
. $(dirname "$0")/common.sh
|
|
|
|
run_command "Install Composer dependencies" "symfony composer install"
|
|
|
|
pushd $theme_path
|
|
run_command "Install theme dependencies" "symfony run npm install"
|
|
popd
|
|
|
|
pushd web
|
|
run_command "Install Drupal" "symfony php ../vendor/bin/drush site-install -y --existing-config"
|
|
popd
|