Skip to content

Commit 917d3d9

Browse files
committed
Merge #17052: scripts: update copyright_header script to include additional files
dffae5a scripts: update copyright_header script to include additional files (gchuf) Pull request description: Includes .sh and .bash-completion files in the script as well ACKs for top commit: MarcoFalke: ACK dffae5a fanquake: ACK dffae5a Tree-SHA512: b1372bc802b6613e3d6362819fefe7e2a9e656dc483238a626448e646ad57071297de108f89ecb7a71b0bcd49f8e6a2f7599f1dd7798a886872b6755de5d2ccf
2 parents 94d6a18 + dffae5a commit 917d3d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/devtools/copyright_header.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# Copyright (c) 2016-2018 The Bitcoin Core developers
2+
# Copyright (c) 2016-2019 The Bitcoin Core developers
33
# Distributed under the MIT software license, see the accompanying
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55

@@ -34,7 +34,7 @@
3434
"src/univalue/",
3535
]
3636

37-
INCLUDE = ['*.h', '*.cpp', '*.cc', '*.c', '*.mm', '*.py']
37+
INCLUDE = ['*.h', '*.cpp', '*.cc', '*.c', '*.mm', '*.py', '*.sh', '*.bash-completion']
3838
INCLUDE_COMPILED = re.compile('|'.join([fnmatch.translate(m) for m in INCLUDE]))
3939

4040
def applies_to_file(filename):

0 commit comments

Comments
 (0)