Skip to content

Commit b36fb72

Browse files
committed
Merge branch 'master' into 118-site-id
2 parents 156956c + ed30ce6 commit b36fb72

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
],
1414
"require": {
1515
"composer/semver": "^1.4",
16-
"wp-cli/wp-cli": "^2.2"
16+
"wp-cli/wp-cli": "dev-master"
1717
},
1818
"require-dev": {
1919
"wp-cli/checksum-command": "^1 || ^2",

src/Core_Command.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ public function install( $args, $assoc_args ) {
432432
*/
433433
public function multisite_convert( $args, $assoc_args ) {
434434
if ( is_multisite() ) {
435-
WP_CLI::error( 'This already is a multisite install.' );
435+
WP_CLI::error( 'This already is a multisite installation.' );
436436
}
437437

438438
$assoc_args = self::set_multisite_defaults( $assoc_args );
@@ -867,7 +867,7 @@ private static function get_wp_details( $abspath = ABSPATH ) {
867867

868868
if ( ! is_readable( $versions_path ) ) {
869869
WP_CLI::error(
870-
"This does not seem to be a WordPress install.\n" .
870+
"This does not seem to be a WordPress installation.\n" .
871871
'Pass --path=`path/to/wordpress` or run `wp core download`.'
872872
);
873873
}

0 commit comments

Comments
 (0)