Skip to content

Commit

Permalink
Fix disabling bintrayUpload task on root project to avoid build error…
Browse files Browse the repository at this point in the history
… when publishing.
  • Loading branch information
robertpanzer committed Nov 2, 2015
1 parent e0a3921 commit a909737
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 @@ -166,6 +166,6 @@ subprojects {

// disable bintrayUpload on root project to prevent build from failing
// NOTE seems to only get added when we use the modern plugin syntax
if (tasks.findByName(':bintrayUpload')) {
if (tasks.findByName('bintrayUpload')) {
bintrayUpload.enabled = false
}

0 comments on commit a909737

Please sign in to comment.