Skip to content

Commit

Permalink
bugfix: the "-Ptarget=" option is ineffective
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 29, 2024
1 parent 5230892 commit 8239bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ model {
if (buildable && project.hasProperty('target')) {
// set in gradle.properties file or -Ptarget= on the command line
String targetArg = project.ext.target
buildable = (target.name == targetArg)
buildable = (pName == targetArg)
}

// flavor-specific defines:
Expand Down

0 comments on commit 8239bed

Please sign in to comment.