Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vjik committed Dec 8, 2023
1 parent d2e2063 commit b786e56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
- 'psalm.xml'

push:
branches: ['master']
paths-ignore:
- 'docs/**'
- 'README.md'
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/IntegrationTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ private function createComposerJson(string $rootPath, array $packages, array $ex
);

$repositoriesItems = array_map(
fn($path) => '{"type":"path","url":"' . $path . '"}',
fn($path) => '{"type":"path","url":"' . str_replace('\\', '/', $path) . '"}',
$repositories
);

Expand Down

0 comments on commit b786e56

Please sign in to comment.