mirror of https://github.com/OpenTTD/OpenTTD
Fix: fix building release tags
I tried building a tag, and got this error: CMake Error at cmake/scripts/FindVersion.cmake:85 (string): string sub-command REGEX, mode REPLACE: regex "^[0-9.]*$" matched an empty string.pull/8251/head
parent
c593893b56
commit
70905ee82e
|
@ -82,7 +82,7 @@ if (GIT_FOUND AND EXISTS "${CMAKE_SOURCE_DIR}/.git")
|
||||||
set(REV_VERSION "${TAG}")
|
set(REV_VERSION "${TAG}")
|
||||||
set(REV_ISTAG 1)
|
set(REV_ISTAG 1)
|
||||||
|
|
||||||
string(REGEX REPLACE "^[0-9.]*$" "" STABLETAG "${TAG}")
|
string(REGEX REPLACE "^[0-9.]+$" "" STABLETAG "${TAG}")
|
||||||
if (NOT STABLETAG STREQUAL "")
|
if (NOT STABLETAG STREQUAL "")
|
||||||
set(REV_ISSTABLETAG 1)
|
set(REV_ISSTABLETAG 1)
|
||||||
else ()
|
else ()
|
||||||
|
|
Loading…
Reference in New Issue