Skip to content

Commit 1b76b0a

Browse files
committed
fixed installation command on Laravel 7
1 parent 134a14f commit 1b76b0a

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ All Notable changes to `Backpack CRUD` will be documented in this file.
88

99
-----------
1010

11+
## 4.0.44 - 2020-03-04
12+
13+
### Fixed
14+
- installation command on Laravel 7;
15+
16+
1117
## 4.0.43 - 2020-03-04
1218

1319
### Added

src/app/Console/Commands/Install.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ public function executeProcess($command, $beforeNotice = false, $afterNotice = f
132132
{
133133
$this->echo('info', $beforeNotice ? ' '.$beforeNotice : $command);
134134

135+
// make sure the command is an array as per Symphony 4.3+ requirement
135136
$command = is_string($command) ? explode(' ', $command) : $command;
136137

137138
$process = new Process($command, null, null, null, $this->option('timeout'));

0 commit comments

Comments
 (0)