mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
[Gradle, JS] Args should concat after input file
^KT-41286 fixed
This commit is contained in:
@@ -53,7 +53,10 @@ constructor(
|
||||
|
||||
override fun exec() {
|
||||
if (inputFileProperty.isPresent) {
|
||||
args(inputFileProperty.asFile.get())
|
||||
val newArgs = mutableListOf<String>()
|
||||
newArgs.add(inputFileProperty.asFile.get().canonicalPath)
|
||||
args?.let { newArgs.addAll(it) }
|
||||
args = newArgs
|
||||
}
|
||||
|
||||
if (sourceMapStackTraces) {
|
||||
|
||||
Reference in New Issue
Block a user