mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
fixed cmake variable matching
This commit is contained in:
parent
e7c52d94c0
commit
570b90eb43
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ else()
|
|||
set(VERSIONTAG "${COMMIT}")
|
||||
else()
|
||||
message(STATUS "The most recent tag was at ${TAGGEDCOMMIT}")
|
||||
if(COMMIT MATCHES TAGGEDCOMMIT)
|
||||
if(${COMMIT} MATCHES ${TAGGEDCOMMIT})
|
||||
message(STATUS "You are building a tagged release")
|
||||
set(VERSIONTAG "release")
|
||||
else()
|
||||
|
|
Loading…
Reference in a new issue