Skip to content
Snippets Groups Projects

Move scripts to drupal-runtime

Merged Konstantinos Samaras-Tsakiris requested to merge move-scripts into master
8 files
+ 0
86
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 0
16
#!/bin/sh
set -exu
# Change working directory to the drupal code
cd /app
# Check if Drupal site is installed
echo "Checking if Drupal site is installed"
drush status bootstrap | grep -q Successful
# Make sure we get a successful response
if [$? -ne 0]; then
echo "Drupal is not installed" >&2
exit 1
fi
exit 0
Loading