chore: add development build in version command

This commit is contained in:
D3v1s0m 2025-04-18 12:28:26 +05:30
parent 643b143868
commit a87f1657cc
No known key found for this signature in database
GPG key ID: FA1F770C7B1D40C1

View file

@ -53,6 +53,8 @@ public class VersionCommand implements CommandHandler {
}
if (buildId != null && !buildId.isEmpty()) {
versionBuilder.append(" (Build #").append(buildId).append(")");
} else {
versionBuilder.append(" (Development Build)");
}
String version = versionBuilder.toString();