Skip to content

Commit

Permalink
Update scripts-testing.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ale5000-git authored Oct 19, 2024
1 parent 182e77b commit c7b0e5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/scripts-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ jobs:
printf 'SHELL: %s - SCRIPT: %s\n\n' "${_shell_cmd:?}" "${1:?}"
_status='0'
if test "${_shell:?}" = 'busybox'; then
"${_shell_cmd:?}" ash "${workspace_dir:?}/${1:?}" -l || _status="${?}"
"${_shell_cmd:?}" ash "${workspace_dir:?}/${1:?}" || _status="${?}"
else
"${_shell_cmd:?}" "${workspace_dir:?}/${1:?}" -l || _status="${?}"
"${_shell_cmd:?}" "${workspace_dir:?}/${1:?}" || _status="${?}"
fi
test "${_status:?}" = 0 || EXIT_CODE="${_status:?}"
printf '\nRETURN CODE:%s\n\n' "${_status:?}"
Expand Down

0 comments on commit c7b0e5e

Please sign in to comment.