Skip to content

Commit

Permalink
Fix Windows paths and cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
karollewandowski committed Apr 27, 2022
1 parent 51e09f2 commit bdf0307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/kotlin/org/jetbrains/intellij/IntelliJPluginSpec.kt
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ class IntelliJPluginSpec : IntelliJPluginSpecBase() {
id 'org.jetbrains.kotlin.jvm' version '$kotlinPluginVersion'
}
intellij {
localPath = '$localPath'
localPath = '${adjustWindowsPath(localPath)}'
plugins = ['org.jetbrains.plugins.go']
}
""",
Expand Down Expand Up @@ -289,7 +289,7 @@ class IntelliJPluginSpec : IntelliJPluginSpecBase() {
id 'org.jetbrains.kotlin.jvm' version '$kotlinPluginVersion'
}
intellij {
localPath = '$localPath'
localPath = '${adjustWindowsPath(localPath)}'
plugins = ['org.jetbrains.plugins.go:212.5712.14']
}
""",
Expand Down

0 comments on commit bdf0307

Please sign in to comment.