File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,10 @@ 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
+
146
150
tarProg="gtar"
147
151
else
148
152
tarProg="tar"
@@ -266,7 +270,7 @@ runs:
266
270
fi
267
271
268
272
printf "::group::${ANSI_LIGHT_BLUE}Removing unwanted files from '${{ inputs.tarball-name }}' ...:${ANSI_NOCOLOR}\n"
269
- while IFS=$'\r\n' read -r file; do
273
+ while IFS=$' \r\n' read -r file; do
270
274
printf " %s\n" "${file}"
271
275
${tarProg} -vf "${{ inputs.tarball-name }}" --delete "${file}"
272
276
done <<<$(${tarProg} -tf "${{ inputs.tarball-name }}" | grep -E '^\.|/\.')
You can’t perform that action at this time.
0 commit comments