Skip to content

Commit

Permalink
Fixed the broken path resolution in the bundledLibrary helper and …
Browse files Browse the repository at this point in the history
…the `TestFrameworkType.Bundled` test framework
  • Loading branch information
hsz committed Jan 21, 2025
1 parent db4db3b commit fb2c847
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [next]

### Fixed

- Fixed the broken path resolution in the ` bundledLibrary` helper and the `TestFrameworkType.Bundled` test framework

## [2.2.1] - 2025-01-21

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -635,9 +635,7 @@ class IntelliJPlatformDependenciesHelper(
* @param path Relative path to the library, like: `lib/testFramework.jar`.
*/
private fun DependencyHandler.createBundledLibrary(path: String) = create(
objects.fileCollection().from(platformPath.map {
it.resolve(path)
})
objects.fileCollection().from(platformPath.resolve(path))
)

/**
Expand Down

0 comments on commit fb2c847

Please sign in to comment.