Skip to content

Commit 89d17df

Browse files
committed
fix ci/cd build error
1 parent 578764c commit 89d17df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ changelog {
6464
title = "Change Log"
6565
showUnreleased = true
6666
unreleasedVersionTitle = "Unreleased"
67-
if (System.getenv("TRAVIS_TAG") != null) {
67+
if (!System.getenv("TRAVIS_TAG").isNullOrEmpty()) {
6868
println("TRAVIS_TAG is ${System.getenv("TRAVIS_TAG")}, Set future version to $version")
6969
futureVersionTag = version.toString()
7070
}

0 commit comments

Comments
 (0)