Skip to content

Commit ab792ae

Browse files
committed
Adjust condition again
1 parent e7568c1 commit ab792ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entity-command.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
'Ability_Command',
9999
array(
100100
'before_invoke' => function () {
101-
if ( Utils\wp_version_compare( '6.8', '<=' ) ) {
101+
if ( Utils\wp_version_compare( '6.9-beta1', '<' ) ) {
102102
WP_CLI::error( 'Requires WordPress 6.9 or greater.' );
103103
}
104104
},
@@ -109,7 +109,7 @@
109109
'Ability_Category_Command',
110110
array(
111111
'before_invoke' => function () {
112-
if ( Utils\wp_version_compare( '6.8', '<=' ) ) {
112+
if ( Utils\wp_version_compare( '6.9-beta1', '<' ) ) {
113113
WP_CLI::error( 'Requires WordPress 6.9 or greater.' );
114114
}
115115
},

0 commit comments

Comments
 (0)