mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
9 lines
182 B
Bash
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
|