This repository was archived by the owner on Aug 28, 2024. It is now read-only.
File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ permalink: /docs/en-US/changelog/
16
16
* Prevent use of sudo vagrant up ( #2215 )
17
17
* Major refactor of the main provisioner, and introduction of a hook system to be used while provisioning ( #2230 , #2238 )
18
18
* Support for cloning git repositories into sites via ` config.yml ` ( #2247 )
19
+ * Install WP-CLI doctor package ( #2051 )
19
20
* Enhanced database backup terminal output ( #2256 )
20
21
21
22
### Deprecations
Original file line number Diff line number Diff line change @@ -20,12 +20,13 @@ function wp_cli_setup() {
20
20
21
21
echo " * Grabbing WP CLI bash completions"
22
22
# Install bash completions
23
- curl -s https://raw.githubusercontent.com/wp-cli/wp-cli/master/utils/wp-completion.bash -o /srv/config/wp-cli/wp-completion.bash
23
+ noroot curl -s https://raw.githubusercontent.com/wp-cli/wp-cli/master/utils/wp-completion.bash -o /srv/config/wp-cli/wp-completion.bash
24
24
else
25
25
echo " * Updating wp-cli..."
26
26
wp --allow-root cli update --nightly --yes
27
27
fi
28
+ wp --allow-root package install git@github.com:wp-cli/doctor-command.git
28
29
}
29
30
export -f wp_cli_setup
30
31
31
- vvv_add_hook after_packages wp_cli_setup
32
+ vvv_add_hook after_packages wp_cli_setup
You can’t perform that action at this time.
0 commit comments