File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -143,10 +143,6 @@ runs:
143
143
fi
144
144
145
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
146
tarProg="gtar"
151
147
else
152
148
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
273
printf "::endgroup::\n"
278
274
279
275
- name : List content of the generated tarball
You can’t perform that action at this time.
0 commit comments