woocommerce-paypal-payments/.ddev/commands/web/orchestrate.d/50_woocommerce.sh
2022-05-06 09:35:14 +03:00

9 lines
182 B
Bash

#!/bin/bash
flags=""
if [ "${WP_MULTISITE}" = "true" ]; then
flags+=" --network"
fi
wp plugin install woocommerce --version="${WC_VERSION}"
wp plugin activate woocommerce $flags