Skip to content

Commit

Permalink
Fix scaffolding from remote
Browse files Browse the repository at this point in the history
  • Loading branch information
stmh committed Feb 5, 2019
1 parent 9a5d83f commit 7f015b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/AppScaffoldCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
}

foreach ($data['inheritsFrom'] as $item) {
if (strpos($item, 0, 4) !== 'http') {
if (substr($item, 0, 4) !== 'http') {
$data['inheritsFrom'] =$data['base_path'] . '/' . $item;
}
}
Expand Down

0 comments on commit 7f015b8

Please sign in to comment.