diff options
-rw-r--r-- | Source/kwsys/.gitattributes | 16 | ||||
-rwxr-xr-x | Utilities/Scripts/update-kwsys.bash | 3 |
2 files changed, 9 insertions, 10 deletions
diff --git a/Source/kwsys/.gitattributes b/Source/kwsys/.gitattributes index 3583f39..7065eb5 100644 --- a/Source/kwsys/.gitattributes +++ b/Source/kwsys/.gitattributes @@ -1,15 +1,13 @@ .git* export-ignore -*.c our-c-style -*.c.in our-c-style -*.cxx our-c-style -*.h our-c-style -*.h.in our-c-style -*.hxx our-c-style -*.hxx.in our-c-style +*.c kwsys-c-style +*.c.in kwsys-c-style +*.cxx kwsys-c-style +*.h kwsys-c-style +*.h.in kwsys-c-style +*.hxx kwsys-c-style +*.hxx.in kwsys-c-style *.cmake whitespace=tab-in-indent *.rst whitespace=tab-in-indent conflict-marker-size=79 *.txt whitespace=tab-in-indent - -* -format.clang-format diff --git a/Utilities/Scripts/update-kwsys.bash b/Utilities/Scripts/update-kwsys.bash index d5485aa..dfbd366 100755 --- a/Utilities/Scripts/update-kwsys.bash +++ b/Utilities/Scripts/update-kwsys.bash @@ -15,7 +15,8 @@ readonly paths=" extract_source () { git_archive - disable_custom_gitattributes + sed -i -e '/import off/,/import on/d' "$extractdir/$name-reduced/.gitattributes" + sed -i -e 's/project=KWSys/project=PublicDashboard/' "$extractdir/$name-reduced/CTestConfig.cmake" } export HOOKS_ALLOW_KWSYS=1 |