Created
March 29, 2024 14:22
-
-
Save ycnakajsph/f89cb0d654654ee6ed58af8b40a3cb7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
execute_process ( | |
COMMAND bash -c "cd ${SOURCE_DIR} && git rev-parse HEAD" | |
OUTPUT_VARIABLE COMMIT_ID | |
OUTPUT_STRIP_TRAILING_WHITESPACE | |
) | |
execute_process ( | |
COMMAND bash -c "cd ${SOURCE_DIR} && git rev-parse --abbrev-ref HEAD" | |
OUTPUT_VARIABLE BRANCH_NAME | |
OUTPUT_STRIP_TRAILING_WHITESPACE | |
) | |
configure_file(${VERSION_TEMPLATE} ${VERSION_FILE}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment