We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8651704 commit ab371beCopy full SHA for ab371be
Simperium/build.gradle
@@ -63,7 +63,7 @@ def gitDescribe = { ->
63
try {
64
def code = new ByteArrayOutputStream()
65
exec {
66
- commandLine 'git', 'describe', '--always', '--dirty=*'
+ commandLine 'git', 'describe', '--always', '--dirty=-dirty'
67
standardOutput = code
68
}
69
return code.toString().trim()
@@ -106,7 +106,7 @@ public final class Version {
106
/* git rev-parse --short --verify HEAD */
107
public static final String BUILD = "${gitHash()}";
108
109
- /* git describe --always --dirty=* */
+ /* git describe --always --dirty=-dirty */
110
public static final String DESCRIBE = "${gitDescribe()}";
111
112
""")
0 commit comments