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
55
55
rb) expected_file_header=$( cat <( echo ' #!/usr/bin/env ruby' ) <( sed -e ' s|@@|##|g' <<< " ${expected_file_header_template}" ) ) ;;
56
56
in) expected_file_header=$( sed -e ' s|@@|##|g' <<< " ${expected_file_header_template}" ) ;;
57
57
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
+ ;;
59
62
esac
60
63
expected_file_header_linecount=$( wc -l <<< " ${expected_file_header}" )
61
64
You can’t perform that action at this time.
0 commit comments