Skip to content

Commit

Permalink
Fix issue JetBrains#1777. An error while building searchable options:…
Browse files Browse the repository at this point in the history
… "Unable to create shared archive file $IDE_CACHE_DIR/pycharm243.18137.19.jsa: (No such file or directory)."
  • Loading branch information
AlexanderBartash committed Oct 9, 2024
1 parent 13402ab commit 820a93f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- Add the missing `org.jetbrains.kotlin.platform.type=jvm` attribute to the `intellijPlatformRuntimeClasspath` configuration manually as it's not inherited from the `runtimeClasspath`.
- Fixed `Could not generate a decorated class for type PluginArtifactRepository.` when creating a custom plugin repository.
- Fix #1777: IOB exception while running tests from Gradle.
- Fix #1777: An error while building searchable options: "Unable to create shared archive file $IDE_CACHE_DIR/pycharm243.18137.19.jsa: (No such file or directory)."

## [2.1.0]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ internal fun String.resolveIdeHomeVariable(platformPath: Path) =
platformPath.pathString.let {
this.replace("\$APP_PACKAGE", it)
.replace("\$IDE_HOME", it)
.replace("\$IDE_CACHE_DIR", it)
.replace("%IDE_HOME%", it)
.replace("Contents/Contents", "Contents")
.let { entry ->
Expand Down

0 comments on commit 820a93f

Please sign in to comment.