revert to append all contents of .version file on the full version, if present and not empty

This commit is contained in:
UbitUmarov
2024-03-11 00:18:05 +00:00
parent 6905f1a71a
commit b70b5c07e3

View File

@@ -758,8 +758,10 @@ namespace OpenSim.Framework.Servers
buildVersion = CommitFile.ReadLine();
if (!string.IsNullOrEmpty(buildVersion))
m_version += buildVersion[..7];
return;
{
m_version += buildVersion;
return;
}
}
string gitDir = Path.Combine("..", ".git");