ignore tag check if we haven't pulled tags

Signed-off-by: Riccardo Spagni <ric@spagni.net>
release-v0.4.0.1
Riccardo Spagni 10 years ago
parent f2937d15bd
commit 3129d51eb4

@ -7,7 +7,7 @@ if(RET)
else()
message(STATUS "You are currently on commit ${COMMIT}")
execute_process(COMMAND "${GIT}" show-ref --tags -d --abbrev COMMAND awk "END{print $1}" RESULT_VARIABLE RET OUTPUT_VARIABLE TAGGEDCOMMIT OUTPUT_STRIP_TRAILING_WHITESPACE)
if(RET AND NOT ${TAGGEDCOMMIT} STREQUAL "")
if(RET AND NOT TAGGEDCOMMIT)
message(WARNING "Cannot determine most recent tag. Make sure that you are building either from a Git working tree or from a source archive.")
set(VERSIONTAG "${COMMIT}")
else()

Loading…
Cancel
Save