Skip to content

Commit

Permalink
Fix automatic version parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
oliemansm committed Oct 8, 2020
1 parent 04c185d commit ac09e79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -ev

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

removeSnapshots() {
Expand Down

0 comments on commit ac09e79

Please sign in to comment.