Skip to content

Commit

Permalink
Merge pull request #12 from xendit/feat/implementation
Browse files Browse the repository at this point in the history
feat: add null check
  • Loading branch information
jidi1f authored Sep 26, 2022
2 parents b7f1953 + 69187e6 commit 1ea8302
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
signingPassword = properties.getProperty("signing.password")
} else {
// Use system environment variables
OSSRHusername = System.getenv("OSSRH_USERNAME")
OSSRHpassword = System.getenv("OSSRH_PASSWORD")
OSSRHstagingProfileId = System.getenv("SONATYPE_STAGING_PROFILE_ID")
signingPassword = System.getenv("SIGNING_PASSWORD")
OSSRHusername = System.getenv("OSSRH_USERNAME") ?: ""
OSSRHpassword = System.getenv("OSSRH_PASSWORD") ?: ""
OSSRHstagingProfileId = System.getenv("SONATYPE_STAGING_PROFILE_ID") ?: ""
signingPassword = System.getenv("SIGNING_PASSWORD") ?: ""
}

// fun getCurrentVersion() {
Expand Down
2 changes: 1 addition & 1 deletion xenissuing-android-lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

object AppProp {
const val group = "com.xendit.xenissuing"
const val version = "0.2.4"
const val version = "0.2.5"
}

version = AppProp.version
Expand Down

0 comments on commit 1ea8302

Please sign in to comment.