1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 01:53:13 +02:00

Remove the g prefix from git hashes.

This commit is contained in:
Sadie Powell
2024-04-04 14:14:40 +01:00
parent 2e43665266
commit 5a54b37aeb
+1 -1
View File
@@ -42,7 +42,7 @@ static std::string get_git_hash(const std::string &git_dir)
}
fd.close();
return "g" + filebuf.substr(0, 7);
return filebuf.substr(0, 7);
}
static bool read_version_sh(const std::string &version_sh, std::map<std::string, std::string> &versions)