You are here

install.sh in Lightning Workflow 8.3

#!/usr/bin/env bash

# NAME
#     install.sh - Install Travis CI dependencies
#
# SYNOPSIS
#     install.sh
#
# DESCRIPTION
#     Creates the test fixture.

cd "$(dirname "$0")"

# Reuse ORCA's own includes.
source ../../../orca/bin/travis/_includes.sh

[[ -d "$ORCA_FIXTURE_DIR" ]] && composer require drupal/inline_entity_form drupal/panelizer --working-dir "$ORCA_FIXTURE_DIR"
exit 0

File

tests/travis/install.sh
View source
  1. #!/usr/bin/env bash
  2. # NAME
  3. # install.sh - Install Travis CI dependencies
  4. #
  5. # SYNOPSIS
  6. # install.sh
  7. #
  8. # DESCRIPTION
  9. # Creates the test fixture.
  10. cd "$(dirname "$0")"
  11. # Reuse ORCA's own includes.
  12. source ../../../orca/bin/travis/_includes.sh
  13. [[ -d "$ORCA_FIXTURE_DIR" ]] && composer require drupal/inline_entity_form drupal/panelizer --working-dir "$ORCA_FIXTURE_DIR"
  14. exit 0