mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Don't show git version string twice
This commit is contained in:
parent
d800f733db
commit
7612686972
2 changed files with 3 additions and 3 deletions
|
@ -89,7 +89,7 @@ sourceSets {
|
||||||
blossom {
|
blossom {
|
||||||
val info = GitInfo()
|
val info = GitInfo()
|
||||||
javaSources {
|
javaSources {
|
||||||
property("version", "${info.version} (${info.gitVersion})")
|
property("version", info.version)
|
||||||
property("gitVersion", info.gitVersion)
|
property("gitVersion", info.gitVersion)
|
||||||
property("buildNumber", info.buildNumber.toString())
|
property("buildNumber", info.buildNumber.toString())
|
||||||
property("branch", info.branch)
|
property("branch", info.branch)
|
||||||
|
|
|
@ -694,7 +694,7 @@ public class GeyserImpl implements GeyserApi {
|
||||||
@SuppressWarnings("BooleanMethodIsAlwaysInverted")
|
@SuppressWarnings("BooleanMethodIsAlwaysInverted")
|
||||||
public boolean isProductionEnvironment() {
|
public boolean isProductionEnvironment() {
|
||||||
// First is if Blossom runs, second is if Blossom doesn't run
|
// First is if Blossom runs, second is if Blossom doesn't run
|
||||||
//noinspection ConstantConditions,MismatchedStringCase - changes in production
|
//noinspection ConstantConditions - changes in production
|
||||||
return !("git-local/dev-0000000".equals(GeyserImpl.GIT_VERSION) || "${gitVersion}".equals(GeyserImpl.GIT_VERSION));
|
return !("git-local/dev-0000000".equals(GeyserImpl.GIT_VERSION) || "${gitVersion}".equals(GeyserImpl.GIT_VERSION));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue