Skip to content

Commit 4838379

Browse files
Merge pull request #43 from youwe-petervanderwal/fix/mapping-order
fix: file installer should prioritize project specific files
2 parents 9056a18 + 2c3283d commit 4838379

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MappingResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ public function __construct(ProjectTypeResolver $typeResolver)
3737
public function resolve(): FileMappingReaderInterface
3838
{
3939
$files = [
40-
__DIR__ . '/../templates/mapping/files',
4140
sprintf(
4241
__DIR__ . '/../templates/mapping/project/%s',
4342
$this->typeResolver->resolve(),
4443
),
44+
__DIR__ . '/../templates/mapping/files',
4545
];
4646

4747
return new UnixFileMappingReader(

0 commit comments

Comments
 (0)