mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 10:55:00 +08:00
8 lines
320 B
Text
8 lines
320 B
Text
|
#!/bin/bash
|
||
|
## Description: Run WordPress CLI inside the web container. DDEV core only provides this for the "wordpress" project type for some reason
|
||
|
## Usage: wp [flags] [args]
|
||
|
## Example: "ddev wp core version" or "ddev wp plugin install user-switching --activate"
|
||
|
## ProjectTypes: php
|
||
|
|
||
|
wp "$@" --path=.ddev/wordpress
|