We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a9285a commit eac7d36Copy full SHA for eac7d36
LavalinkServer/build.gradle
@@ -86,7 +86,9 @@ String versionFromTag() {
86
it.commit == grgit.head()
87
}
88
89
- def clean = grgit.status().clean //uncommitted changes? -> should be SNAPSHOT
+ // Uncommitted changes? -> should be SNAPSHOT
90
+ // Also watch out for false positives in the CI build
91
+ def clean = grgit.status().clean && System.getenv('CI') == null
92
93
if (headTag && clean) {
94
headTag.getName()
0 commit comments