Fix syntax error

Fix small syntax error in post build event code.
This commit is contained in:
Kawe Mazidjatari 2023-05-14 12:07:25 +02:00
parent d8ac2852ba
commit 7078a8b10a

View File

@ -23,7 +23,7 @@ function( WriteBuildString OUTPUT_DIR )
# Convert the hash to uppercase # Convert the hash to uppercase
string( TOUPPER string( TOUPPER
"${GIT_COMMIT_HASH} GIT_COMMIT_HASH" "${GIT_COMMIT_HASH}" GIT_COMMIT_HASH
) )
# Get the current git branch name # Get the current git branch name
@ -41,7 +41,7 @@ function( WriteBuildString OUTPUT_DIR )
# Write the build string to a file # Write the build string to a file
file( WRITE file( WRITE
"${CMAKE_SOURCE_DIR}/${OUTPUT_DIR}/build.txt ${BUILD_STRING}" "${CMAKE_SOURCE_DIR}/${OUTPUT_DIR}/build.txt" "${BUILD_STRING}"
) )
endfunction() endfunction()