Skip to content

Commit 7093d7f

Browse files
committed
writing info to stderr when bintray is ignored
1 parent fb5825a commit 7093d7f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ subprojects {
4747
testCompile group: 'junit', name: 'junit', version: '4.12'
4848
}
4949

50-
if (!(isCi || isJitpack)) {
50+
if (isCi || isJitpack) {
51+
System.err.println("skipping bintray for CI / JitPack builds")
52+
} else {
5153
// we don't need the bintray features for the ci/jitpack builds build
5254
apply from: rootProject.file('gradle/bintray.gradle')
5355
}

0 commit comments

Comments
 (0)