diff --git a/.github/workflows/scripts-testing.yml b/.github/workflows/scripts-testing.yml index 6ebbe040..d94eaaae 100644 --- a/.github/workflows/scripts-testing.yml +++ b/.github/workflows/scripts-testing.yml @@ -57,7 +57,7 @@ jobs: EXECUTED_LIST='' for _shell in sh dash bash ksh zsh osh; do if ! _shell="$(command -v "${_shell:?}")" || ! not_already_excuted "${_shell:?}"; then continue; fi - printf 'SHELL: %s - SCRIPT: "%s"\n\n' "${_shell:?}" "${1:?}" + printf '\nSHELL: %s - SCRIPT: %s\n\n' "${_shell:?}" "${1:?}" "${_shell:?}" "${1:?}" printf '\nRETURN CODE:%s\n' "${?}" done @@ -65,7 +65,7 @@ jobs: export ONLY_FOR_TESTING='true' for _script in 'tools/bits-info.sh'; do test_on_all_shells "${workspace_dir}/${_script}" - printf '\n---\n' + printf '---\n' done - name: "Test script on Oils (only under macOS-latest)" if: "${{ matrix.os == 'macos-latest' }}"