Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix copyBuild dependency #19

Merged
merged 2 commits into from
Jun 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ You can download the assembler and disassembler in various forms:

If you've downloaded the source code, you can build it with Gradle:

./gradlew clean assemble
./gradlew clean build

Once built, you can [run the assembler and disassembler](index.md) with the
script `bin/assembler.sh` or `bin/assembler.bat`.
Expand Down
3 changes: 2 additions & 1 deletion pga-cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,13 @@ jar {

tasks.register('copyBuild', Copy) {
dependsOn tasks.jar
tasks.assemble.dependsOn(it)

from tasks.jar.outputs
into file("$rootDir/lib")
}

tasks.named("build") { finalizedBy("copyBuild") }

distributions {
main {
distributionBaseName.set('proguard-assembler')
Expand Down
Loading