Skip to content

Commit a4b7603

Browse files
committed
fixes build
Signed-off-by: Oleh Dokuka <shadowgun@i.ua>
1 parent 994f279 commit a4b7603

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

artifactory.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey')) {
3333
defaults {
3434
publications('maven')
3535
}
36-
clientConfig.info.setBuildNumber('' + project.property('buildNumber'))
36+
if (project.hasProperty('buildNumber')) {
37+
clientConfig.info.setBuildNumber('' + project.property('buildNumber'))
38+
}
3739
}
3840
}
3941
}

0 commit comments

Comments
 (0)