diff options
| author | Hennadii Stepanov <[email protected]> | 2019-06-29 18:35:45 +0300 |
|---|---|---|
| committer | Hennadii Stepanov <[email protected]> | 2019-06-29 18:35:45 +0300 |
| commit | 01fafe55a1ab20870749dae01b437049ad4ce6e6 (patch) | |
| tree | 76c3838dfc37a1ed2c60332e538a956d1126338c /contrib/devtools/copyright_header.py | |
| parent | Merge #15964: Docs: Improve build-osx document formatting (diff) | |
| download | discoin-01fafe55a1ab20870749dae01b437049ad4ce6e6.tar.xz discoin-01fafe55a1ab20870749dae01b437049ad4ce6e6.zip | |
Include Objective-C source files
The copyright_header.py script will process Objective-C source files
(*.mm) as other ones.
Diffstat (limited to 'contrib/devtools/copyright_header.py')
| -rwxr-xr-x | contrib/devtools/copyright_header.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/copyright_header.py b/contrib/devtools/copyright_header.py index f2987f226..29d1ed87f 100755 --- a/contrib/devtools/copyright_header.py +++ b/contrib/devtools/copyright_header.py @@ -34,7 +34,7 @@ EXCLUDE_DIRS = [ "src/univalue/", ] -INCLUDE = ['*.h', '*.cpp', '*.cc', '*.c', '*.py'] +INCLUDE = ['*.h', '*.cpp', '*.cc', '*.c', '*.mm', '*.py'] INCLUDE_COMPILED = re.compile('|'.join([fnmatch.translate(m) for m in INCLUDE])) def applies_to_file(filename): |