1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-28 06:56:29 -05:00

Merge pull request #1619 from janisozaur/patch-12

Handle missing git info when building
This commit is contained in:
bunnei
2018-11-18 19:53:34 -08:00
committed by GitHub

View File

@@ -33,6 +33,10 @@ else()
endif()
if(NOT HEAD_HASH)
if(EXISTS "@GIT_DATA@/head-ref")
file(READ "@GIT_DATA@/head-ref" HEAD_HASH LIMIT 1024)
string(STRIP "${HEAD_HASH}" HEAD_HASH)
else()
set(HEAD_HASH "Unknown")
endif()
endif()