[Gradle, JS] Add args instead of full override

This commit is contained in:
Ilya Goncharov
2019-10-12 11:44:00 +03:00
parent ee49c96650
commit 1b929cd93e
2 changed files with 2 additions and 2 deletions
@@ -31,7 +31,7 @@ tasks {
}
// Without it several yarns can works incorrectly
(this as YarnTask).apply {
args = listOf("--network-concurrency", "1", "--mutex", "network")
args = args + "--network-concurrency" + "1" + "--mutex" + "network"
}
}
@@ -35,7 +35,7 @@ tasks {
}
// Without it several yarns can works incorrectly
(this as YarnTask).apply {
args = listOf("--network-concurrency", "1", "--mutex", "network")
args = args + "--network-concurrency" + "1" + "--mutex" + "network"
}
}