You are here

install.sh in Acquia Connector 8.2

Same filename and directory in other branches
  1. 8 bin/travis/install.sh
  2. 3.x bin/travis/install.sh
#!/usr/bin/env bash

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

cd "$(dirname "$0")"; source _includes.sh

cd ${TRAVIS_BUILD_DIR}
composer install
npm install -g csslint

File

bin/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")"; source _includes.sh
  11. cd ${TRAVIS_BUILD_DIR}
  12. composer install
  13. npm install -g csslint