misc: print the correct commit hash (#619)

This commit is contained in:
Maximilian Seidler 2024-12-29 08:24:25 +00:00 committed by GitHub
parent d212f4cc10
commit 820eaff7a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -50,7 +50,7 @@ int main(int argc, char** argv, char** envp) {
if (ISTAGGEDRELEASE)
std::println("Hyprlock version v{}", HYPRLOCK_VERSION);
else
std::println("Hyprlock version v{} (commit {})", HYPRLOCK_VERSION, HYPRLOCK_VERSION_COMMIT);
std::println("Hyprlock version v{} (commit {})", HYPRLOCK_VERSION, HYPRLOCK_COMMIT);
return 0;
}