From 6cdd84b94cbbc3850b293f9c4db4317b1e115cef Mon Sep 17 00:00:00 2001 From: Luan Freitas <33601626+luanfreitasdev@users.noreply.github.com> Date: Sat, 16 Mar 2024 18:37:18 -0300 Subject: [PATCH] Update CreateCommand.php (#1466) --- src/Commands/CreateCommand.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Commands/CreateCommand.php b/src/Commands/CreateCommand.php index ae329b9e..6eb72a19 100644 --- a/src/Commands/CreateCommand.php +++ b/src/Commands/CreateCommand.php @@ -55,7 +55,9 @@ private function runChecks(): self { $this->call('powergrid:update'); - $this->call('powergrid:check-dependencies'); + if (PHP_OS_FAMILY !== 'Windows') { + $this->call('powergrid:check-dependencies'); + } return $this; }