mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
10 lines
171 B
Bash
10 lines
171 B
Bash
#!/bin/bash
|
|
|
|
pushd "${DDEV_DOCROOT}"
|
|
|
|
flags=""
|
|
if [ "${WP_MULTISITE}" = "true" ]; then
|
|
flags+=" --network"
|
|
fi
|
|
|
|
wp plugin activate "${PLUGIN_NAME:-$DDEV_PROJECT}" $flags
|