mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-03 19:53:19 +03:00
11 lines
182 B
Bash
11 lines
182 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ -z $TRAVIS_BUILD_DIR ]; then
|
|
exit 0;
|
|
fi
|
|
|
|
PRESTASHOP_DIR=$TRAVIS_BUILD_DIR/../PrestaShop
|
|
|
|
cd $PRESTASHOP_DIR
|
|
composer run-script create-test-db --timeout=0
|