Skip to content

Commit

Permalink
fix: broken gradle task
Browse files Browse the repository at this point in the history
  • Loading branch information
Sculas committed Jun 16, 2022
1 parent 0d3829e commit 91483a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ tasks {

exec {
workingDir = work
commandLine = listOf("mv", "*.dex", output)
commandLine = listOf("mv", "classes.dex", output)
}
}
}
Expand All @@ -52,4 +52,4 @@ tasks {
description = "Dummy task"
dependsOn(named("generateDex"))
}
}
}

0 comments on commit 91483a8

Please sign in to comment.