Skip to content

Commit

Permalink
Ask for passwords when building any release build flavor
Browse files Browse the repository at this point in the history
  • Loading branch information
barbeau committed Jun 15, 2018
1 parent 10b0f77 commit 6341550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GPSTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ task askForPasswords << {
}

tasks.whenTaskAdded { theTask ->
if (theTask.name.equals("packageRelease")) {
if (theTask.name.matches("\\bpackage\\w+Release\\b")) {
theTask.dependsOn "askForPasswords"
}
}
Expand Down

0 comments on commit 6341550

Please sign in to comment.