Browse Source
Merge pull request #6577 from ReinUsesLisp/precommit
cmake: Only copy pre-commit hook if .git directory exists
pull/15/merge
Ameer J
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
3 deletions
-
CMakeLists.txt
|
|
|
@ -47,9 +47,10 @@ if (NOT IS_MULTI_CONFIG AND NOT CMAKE_BUILD_TYPE) |
|
|
|
endif() |
|
|
|
|
|
|
|
if(EXISTS ${PROJECT_SOURCE_DIR}/hooks/pre-commit AND NOT EXISTS ${PROJECT_SOURCE_DIR}/.git/hooks/pre-commit) |
|
|
|
message(STATUS "Copying pre-commit hook") |
|
|
|
file(COPY hooks/pre-commit |
|
|
|
DESTINATION ${PROJECT_SOURCE_DIR}/.git/hooks) |
|
|
|
if (EXISTS ${PROJECT_SOURCE_DIR}/.git/) |
|
|
|
message(STATUS "Copying pre-commit hook") |
|
|
|
file(COPY hooks/pre-commit DESTINATION ${PROJECT_SOURCE_DIR}/.git/hooks) |
|
|
|
endif() |
|
|
|
endif() |
|
|
|
|
|
|
|
# Sanity check : Check that all submodules are present |
|
|
|
|