Skip to content

Commit e468197

Browse files
committed
Fix project creation to keep the template's phapp.yml.
1 parent 5686802 commit e468197

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/CreateCommands.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ protected function updatePhappManifest($name) {
9999
catch (PhappInstanceNotFoundException $e) {
100100
$data = [];
101101
}
102-
$data = array_replace_recursive($data, $this->globalConfig->getPhappInitDefaults());
102+
$data = array_replace_recursive($this->globalConfig->getPhappInitDefaults(), $data);
103103

104104
// Ensure some important attributes come first.
105105
$new_data['name'] = $name;

0 commit comments

Comments
 (0)