From 4a62e51d1d12ffaf208b1091498aef4d7958acdd Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Mon, 29 Dec 2025 10:44:20 -0500 Subject: [PATCH] build: unset GITREV after use --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index cc139fbac..c8fe275b7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -64,6 +64,7 @@ if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git) elseif(NOT ${GITREV} STREQUAL "") set(DESKFLOW_VERSION_TWEAK ${GITREV}) endif() + unset(GITREV) endif() endif() endif()