diff --git a/src/main/kotlin/de/itemis/mps/gradle/downloadJBR/Plugin.kt b/src/main/kotlin/de/itemis/mps/gradle/downloadJBR/Plugin.kt index 920d44e..b747c49 100644 --- a/src/main/kotlin/de/itemis/mps/gradle/downloadJBR/Plugin.kt +++ b/src/main/kotlin/de/itemis/mps/gradle/downloadJBR/Plugin.kt @@ -48,7 +48,7 @@ open class DownloadJbrProjectPlugin : Plugin { if (downloadDir.listFiles { _, name -> name.startsWith("jbr_") || name.startsWith("jbr-") }!!.any()) { exec { - commandLine("sh", "-c", "mv jbr_* jbr") + commandLine("sh", "-c", "mv jbr* jbr") workingDir = downloadDir } }