File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
.github/workflows/scripts Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,10 @@ while IFS= read -r file_path; do
5555 rb) expected_file_header=$( cat <( echo ' #!/usr/bin/env ruby' ) <( sed -e ' s|@@|##|g' <<< " ${expected_file_header_template}" ) ) ;;
5656 in) expected_file_header=$( sed -e ' s|@@|##|g' <<< " ${expected_file_header_template}" ) ;;
5757 cmake) expected_file_header=$( sed -e ' s|@@|##|g' <<< " ${expected_file_header_template}" ) ;;
58- * ) fatal " Unsupported file extension for file (exclude or update this script): ${file_path} " ;;
58+ * )
59+ error " Unsupported file extension ${file_extension} for file (exclude or update this script): ${file_path} "
60+ paths_with_missing_license+=(" ${file_path} " )
61+ ;;
5962 esac
6063 expected_file_header_linecount=$( wc -l <<< " ${expected_file_header}" )
6164
You can’t perform that action at this time.
0 commit comments