Skip to content

Commit

Permalink
fix ci/cd build error
Browse files Browse the repository at this point in the history
  • Loading branch information
wuseal committed Jun 30, 2021
1 parent 578764c commit 89d17df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ changelog {
title = "Change Log"
showUnreleased = true
unreleasedVersionTitle = "Unreleased"
if (System.getenv("TRAVIS_TAG") != null) {
if (!System.getenv("TRAVIS_TAG").isNullOrEmpty()) {
println("TRAVIS_TAG is ${System.getenv("TRAVIS_TAG")}, Set future version to $version")
futureVersionTag = version.toString()
}
Expand Down

0 comments on commit 89d17df

Please sign in to comment.