Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit ac09e79

Browse files
committed
Fix automatic version parsing
1 parent 04c185d commit ac09e79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

github-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -ev
33

44
getVersion() {
5-
./gradlew properties -q | grep "version:" | grep -v "kotlin_version:" | awk '{print $2}' | tr -d '[:space:]'
5+
./gradlew properties -q | grep -E "^version" | awk '{print $2}' | tr -d '[:space:]'
66
}
77

88
removeSnapshots() {

0 commit comments

Comments
 (0)