Skip to content

Commit 7c556a3

Browse files
committed
fixed
1 parent c116bc6 commit 7c556a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ version '1.0.0.B2'
1111
sourceCompatibility = 1.8
1212

1313
ext {
14-
bintrayUser = System.getenv ('BINTRAY_USER') ? BINTRAY_USER : 'n/a'
15-
bintrayKey = System.getenv ('BINTRAY_KEY') ? BINTRAY_KEY : 'n/a'
14+
bintrayUser = project.hasProperty ('BINTRAY_USER') ? BINTRAY_USER : 'n/a'
15+
bintrayKey = project.hasProperty ('BINTRAY_KEY') ? BINTRAY_KEY : 'n/a'
1616
}
1717

1818
repositories {

0 commit comments

Comments
 (0)