mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
Tests: Fix CheckSourceTree test for newer Git
The output of 'git status' no longer starts each line in '#'. Match that optionally.
This commit is contained in:
@@ -268,12 +268,12 @@ if(NOT ov STREQUAL "")
|
||||
|
||||
if(consider)
|
||||
if(is_git_checkout)
|
||||
if(line MATCHES "^#[ \t]*modified:")
|
||||
if(line MATCHES "^#?[ \t]*modified:")
|
||||
message(" locally modified file detected...")
|
||||
set(modifications 1)
|
||||
endif()
|
||||
|
||||
if(line MATCHES "^# Untracked")
|
||||
if(line MATCHES "^(# )?Untracked")
|
||||
message(" locally non-added file/directory detected...")
|
||||
set(nonadditions 1)
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user