Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
ale5000-git committed Oct 30, 2024
1 parent 617ceec commit cf9fcc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/scripts-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ jobs:
if test "${current_os:?}" = 'Linux'; then
sudo apt-get -y -qq install 'mksh' 'yash' 'posh' 1> /dev/null
elif test "${current_os:?}" = 'macOS'; then
brew 1> /dev/null install --quiet 'oils-for-unix' 'mksh' 'oksh' 'ksh93' 'yash'
brew 1> /dev/null install --quiet 'mksh' 'oksh' 'ksh93' 'yash'
brew 1> /dev/null install --quiet 'oils-for-unix'
else
choco 1> /dev/null install 'busybox' -y --no-progress
#choco install 'schily-cdrtools' --pre -y --no-progress
Expand Down Expand Up @@ -164,8 +165,7 @@ jobs:
fi
if test "${1:?}" = 'cmdline.sh'; then
case "${_s_shell?}" in
#ksh) return 0 ;;
obosh | busybox-x86) return 0 ;; # Skip
obosh | busybox-x86 | busybox-x86-legacy) return 0 ;; # Skip
*) ;;
esac
else
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
*) "${_shell_cmd:?}" "${workspace_dir:?}/${1:?}" ${2-} || _status="${?}" ;;
esac
test "${_status:?}" = 0 || EXIT_CODE="${_status:?}"
printf '\nRETURN CODE:%s\n\n' "${_status:?}"
printf '\nRETURN CODE: %s\n\n' "${_status:?}"
done
unset CURRENT_SHELL CURRENT_APPLET
}
Expand Down

0 comments on commit cf9fcc1

Please sign in to comment.