We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02e3619 commit 0c22b91Copy full SHA for 0c22b91
action.yml
@@ -143,6 +143,10 @@ 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"
@@ -266,7 +270,7 @@ runs:
266
270
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
274
printf " %s\n" "${file}"
275
${tarProg} -vf "${{ inputs.tarball-name }}" --delete "${file}"
276
done <<<$(${tarProg} -tf "${{ inputs.tarball-name }}" | grep -E '^\.|/\.')
0 commit comments