File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
.github/workflows/scripts Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -94,13 +94,16 @@ while IFS= read -r file_path; do
94
94
py) comment_marker=' ##' ; header_prefix=$' #!/usr/bin/env python3\n ' ;;
95
95
rb) comment_marker=' ##' ; header_prefix=$' #!/usr/bin/env ruby\n ' ;;
96
96
sh) comment_marker=' ##' ; header_prefix=$' #!/bin/bash\n ' ;;
97
+ strings) comment_marker=' //' ;;
97
98
swift-format) continue ;; # .swift-format is JSON and doesn't support comments
98
99
swift) comment_marker=' //' ;;
99
100
ts) comment_marker=' //' ;;
100
101
tsx) comment_marker=' //' ;;
101
102
txt) continue ;; # Text files don't need license headers
102
103
yml) continue ;; # YAML Configuration files don't need license headers
103
104
yaml) continue ;; # YAML Configuration files don't need license headers
105
+ xcbuildrules) comment_marker=' //' ;;
106
+ xcspec) comment_marker=' //' ;;
104
107
* )
105
108
error " Unsupported file extension ${file_extension} for file (exclude or update this script): ${file_path} "
106
109
paths_with_missing_license+=(" ${file_path} " )
You can’t perform that action at this time.
0 commit comments