We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f20d21e + 1c39083 commit fd04b11Copy full SHA for fd04b11
.github/workflows/scripts/check-license-header.sh
@@ -53,6 +53,9 @@ file_paths=$(echo "$exclude_list" | xargs git ls-files)
53
while IFS= read -r file_path; do
54
file_basename=$(basename -- "${file_path}")
55
file_extension="${file_basename##*.}"
56
+ if [[ -L "${file_path}" ]]; then
57
+ continue # Ignore symbolic links
58
+ fi
59
60
# shellcheck disable=SC2001 # We prefer to use sed here instead of bash search/replace
61
case "${file_extension}" in
0 commit comments