Skip to content

Commit 32aabe6

Browse files
jminorMichaelPlug
authored andcommitted
Updated verify_license.py to support Swift, C and Objective-C++ source files. (AcademySoftwareFoundation#1288)
Signed-off-by: Michele Spina <[email protected]>
1 parent 4fb0f3a commit 32aabe6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

maintainers/verify_license.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,18 @@
1515
""",
1616
".cpp": """// SPDX-License-Identifier: Apache-2.0
1717
// Copyright Contributors to the OpenTimelineIO project
18+
""",
19+
".c": """// SPDX-License-Identifier: Apache-2.0
20+
// Copyright Contributors to the OpenTimelineIO project
1821
""",
1922
".h": """// SPDX-License-Identifier: Apache-2.0
2023
// Copyright Contributors to the OpenTimelineIO project
24+
""",
25+
".swift": """// SPDX-License-Identifier: Apache-2.0
26+
// Copyright Contributors to the OpenTimelineIO project
27+
""",
28+
".mm": """// SPDX-License-Identifier: Apache-2.0
29+
// Copyright Contributors to the OpenTimelineIO project
2130
"""
2231
}
2332

0 commit comments

Comments
 (0)