We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3011ac9 commit fff5c25Copy full SHA for fff5c25
action.yml
@@ -143,10 +143,6 @@ runs:
143
fi
144
145
if [[ "${{ runner.os }}" == "macOS" ]]; then
146
- printf "::group::${ANSI_LIGHT_BLUE}%s${ANSI_NOCOLOR}\n" "Install newer 'bash' via homebrew ..."
147
- brew install bash
148
- printf "::endgroup::\n"
149
-
150
tarProg="gtar"
151
else
152
tarProg="tar"
@@ -273,7 +269,7 @@ runs:
273
269
while IFS=$'\r\n' read -r file; do
274
270
printf " %s\n" "${file}"
275
271
${tarProg} -vf "${{ inputs.tarball-name }}" --delete "${file}"
276
- done <<<$(${tarProg} -tf "${{ inputs.tarball-name }}" | grep -E '^\.|/\.')
272
+ done < <(${tarProg} -tf "${{ inputs.tarball-name }}" | grep -E '^\.|/\.')
277
printf "::endgroup::\n"
278
279
- name: List content of the generated tarball
0 commit comments