woocommerce/plugins/woocommerce-admin/bin/travis.sh

14 lines
291 B
Bash
Raw Normal View History

2018-09-21 13:06:16 +00:00
#!/usr/bin/env bash
# usage: travis.sh before|after
if [ "$1" == 'before' ]; then
cd "$WP_CORE_DIR/wp-content/plugins/woocommerce-admin/"
npm run build:feature-config
if [[ "$RUN_PHPCS" == "1" || "$RUN_RANDOM" == "1" ]]; then
composer install
else
composer install --no-dev
fi
2018-09-21 13:06:16 +00:00
fi