From 820eaff7a8acf61bdc0152b4c43a14164eafb179 Mon Sep 17 00:00:00 2001 From: Maximilian Seidler <78690852+PaideiaDilemma@users.noreply.github.com> Date: Sun, 29 Dec 2024 08:24:25 +0000 Subject: [PATCH] misc: print the correct commit hash (#619) --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index f80c480..577280c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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; }