10 lines
265 B
Bash
10 lines
265 B
Bash
#!/bin/bash
|
|
|
|
set -e $DRUPAL_TI_DEBUG
|
|
|
|
# Ensure the right Drupal version is installed.
|
|
# Note: This function is re-entrant.
|
|
drupal_ti_ensure_drupal
|
|
|
|
phpcs --report=full --standard=Drupal "$DRUPAL_TI_DRUPAL_DIR/$DRUPAL_TI_MODULES_PATH/$DRUPAL_TI_MODULE_NAME" || true
|