[Gradle, JS] Args should concat after input file
^KT-41286 fixed
This commit is contained in:
+4
-1
@@ -53,7 +53,10 @@ constructor(
|
|||||||
|
|
||||||
override fun exec() {
|
override fun exec() {
|
||||||
if (inputFileProperty.isPresent) {
|
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) {
|
if (sourceMapStackTraces) {
|
||||||
|
|||||||
Reference in New Issue
Block a user