Skip to content

Commit

Permalink
Respect the sandboxDirectory property when configuring custom tasks…
Browse files Browse the repository at this point in the history
… with `intellijPlatformTesting` extension #1723
  • Loading branch information
hsz committed Aug 8, 2024
1 parent 98f128d commit d1f6c5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ abstract class IntelliJPlatformTestingExtension @Inject constructor(private val
intelliJPlatformConfiguration = customIntelliJPlatformConfiguration
intelliJPlatformPluginConfiguration = customIntellijPlatformPluginConfiguration

sandboxDirectory = this@all.sandboxDirectory
sandboxDirectory = this@all.sandboxDirectory.orElse(basePrepareSandboxTask.flatMap { it.sandboxDirectory })
splitMode = this@all.splitMode.orElse(basePrepareSandboxTask.flatMap { it.splitMode })
splitModeTarget = this@all.splitModeTarget.orElse(basePrepareSandboxTask.flatMap { it.splitModeTarget })
disabledPlugins = plugins.disabled
Expand Down

0 comments on commit d1f6c5d

Please sign in to comment.