Skip to content

Commit cb68bf5

Browse files
committed
Updated build.gradle so that we always provide a git description
JAVA-2266
1 parent ea45d50 commit cb68bf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def getGitVersion() {
116116
new ByteArrayOutputStream().withStream { os ->
117117
def result = exec {
118118
executable 'git'
119-
args 'describe', '--tags'
119+
args 'describe', '--tags', '--always', '--dirty'
120120
standardOutput = os
121121
}
122122
outputAsString = os.toString().substring(1)

0 commit comments

Comments
 (0)