mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-03 19:53:19 +03:00
18 lines
314 B
Bash
18 lines
314 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -z $TRAVIS_BUILD_DIR ]; then
|
|
exit 0;
|
|
fi
|
|
|
|
PRESTASHOP_DIR=$TRAVIS_BUILD_DIR/../PrestaShop
|
|
|
|
cd ..
|
|
git clone https://github.com/PrestaShop/PrestaShop
|
|
cd PrestaShop
|
|
|
|
if ! [ -z $BRANCH ]; then
|
|
git checkout $BRANCH;
|
|
else
|
|
composer install --prefer-dist --no-interaction --no-progress
|
|
fi
|