diff --git a/bin/wr b/bin/wr index 13a9d009..1bf8acee 100755 --- a/bin/wr +++ b/bin/wr @@ -4,7 +4,6 @@ use Automattic\WooCommerce\Grow\WR\Commands\Branch; use Automattic\WooCommerce\Grow\WR\Commands\Bulk; use Automattic\WooCommerce\Grow\WR\Commands\Release; -use Automattic\WooCommerce\Grow\WR\Commands\Simulate; use Automattic\WooCommerce\Grow\WR\Commands\VersionReplace; use WR\Application; @@ -45,7 +44,6 @@ $app->addCommands( new Bulk(), new VersionReplace(), new Release(), - new Simulate(), new Branch(), ] ); diff --git a/packages/php/woorelease-extension/src/Commands/Simulate.php b/packages/php/woorelease-extension/src/Commands/Simulate.php deleted file mode 100644 index c08645d0..00000000 --- a/packages/php/woorelease-extension/src/Commands/Simulate.php +++ /dev/null @@ -1,26 +0,0 @@ -simulate = true; - - $this - ->setDescription( 'Simulates the release process, following the standard Woo process.' ) - ->setHelp( 'This command allows you to create a fully simulated release (skipping the deploy and release to GitHub).' ); - } -}