Skip to content

Commit 054331c

Browse files
gradle: use Sync task instead of copy to delete any leftover files
1 parent 81128a3 commit 054331c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,15 +159,15 @@ repositories {
159159
mavenCentral()
160160
}
161161

162-
task resolveMps(type: Copy) {
162+
task resolveMps(type: Sync) {
163163
dependsOn configurations.mps
164164
from {
165165
configurations.mps.resolve().collect { zipTree(it) }
166166
}
167167
into "$buildDir/mps"
168168
}
169169

170-
task resolveLanguageLibs(type: Copy) {
170+
task resolveLanguageLibs(type: Sync) {
171171
from {
172172
configurations.languageLibs.resolve().collect { zipTree(it) }
173173
}

0 commit comments

Comments
 (0)