aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-06-29 18:35:45 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-06-29 18:35:45 +0300
commit01fafe55a1ab20870749dae01b437049ad4ce6e6 (patch)
tree76c3838dfc37a1ed2c60332e538a956d1126338c /contrib
parent04710b6d8c9e286485f4241671df72216b0f4698 (diff)
downloadbitcoin-01fafe55a1ab20870749dae01b437049ad4ce6e6.tar.xz
Include Objective-C source files
The copyright_header.py script will process Objective-C source files (*.mm) as other ones.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/devtools/copyright_header.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/copyright_header.py b/contrib/devtools/copyright_header.py
index f2987f2260..29d1ed87ff 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):