Skip to content

Commit

Permalink
Fix bug with printing status
Browse files Browse the repository at this point in the history
  • Loading branch information
skyestudiosDev committed Apr 25, 2024
1 parent ed76b8f commit 182acfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ android {
@Suppress("UnstableApiUsage")
mavenPublishing {
//publishToMavenCentral(SonatypeHost.S01, true)
val versionTxt = "0.0.1"
val versionTxt = "0.0.2"
val isDev = findProperty("env")?.equals("dev") ?: false
val version = if (isDev) versionTxt.plus("-SNAPSHOT") else versionTxt
val version = if (isDev) "0.0.1-SNAPSHOT" else versionTxt


coordinates("com.dilivva", "blueline", version)
Expand Down

0 comments on commit 182acfc

Please sign in to comment.