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.
1 parent 3bcbd80 commit 2811d95Copy full SHA for 2811d95
.github/workflows/scripts/check-license-header.sh
@@ -46,7 +46,7 @@ dynamic_exclude_list=( )
46
47
if [[ -f .licenseignore ]]; then
48
static_exclude_list+=( '":(exclude).licenseignore"' )
49
- IFS=$'\n' read -d '' -r -a dynamic_exclude_list <<< $(sed -E 's/^(.*)$/":(exclude)\1"/' <.licenseignore)
+ IFS=$'\n' read -d '' -r -a dynamic_exclude_list <<< "$(sed -E 's/^(.*)$/":(exclude)\1"/' <.licenseignore)"
50
fi
51
52
exclude_list=( "${static_exclude_list[@]}" "${dynamic_exclude_list[@]}" )
0 commit comments