mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-03 11:43:16 +03:00
23 lines
508 B
Bash
23 lines
508 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -z $TRAVIS_BUILD_DIR ]; then
|
|
exit 0;
|
|
fi
|
|
|
|
PRESTASHOP_DIR=$TRAVIS_BUILD_DIR/../PrestaShop
|
|
|
|
cd $PRESTASHOP_DIR
|
|
|
|
if [ -z $BRANCH ]; then
|
|
if [ -f "tests/parameters.yml.travis" ]; then
|
|
cp tests/parameters.yml.travis app/config/parameters.yml
|
|
else
|
|
cp tests-legacy/parameters.yml.travis app/config/parameters.yml
|
|
fi
|
|
|
|
(php -S localhost:80 &) 2> /dev/null > /dev/null
|
|
bash travis-scripts/install-prestashop
|
|
else
|
|
bash travis-scripts/install-prestashop.sh
|
|
fi
|