Skip to content

Commit

Permalink
Merge branch 'micro5k:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ale5000-git authored Nov 1, 2024
2 parents dff6987 + 2791a7a commit c8d3442
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
15 changes: 5 additions & 10 deletions cmdline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,27 @@ if test "${A5K_FUNCTIONS_INCLUDED:-false}" = 'false'; then
main()
{
if command 1> /dev/null 2>&1 -v 'local'; then
local _main_dir _run_strategy _applet _newline
local _main_dir _run_strategy _applet
else
if command 1> /dev/null 2>&1 -v 'typeset'; then
typeset _main_dir _run_strategy _applet _newline
typeset _main_dir _run_strategy _applet
typeset _gse_shell_exe _gse_tmp_var
fi
\eval ' local() { :; } ' || :
fi

_newline='
'

# Execute only if the first initialization has not already been done
if test -z "${MAIN_DIR-}" || test -z "${USER_HOME-}"; then

# Avoid picturesque bugs on Bash under Windows
if test -e '/usr/bin/uname' && test "$(/usr/bin/uname 2> /dev/null -o || :)" = 'Msys'; then PATH="/usr/bin:${PATH:-/usr/bin}"; fi
if test -x '/usr/bin/uname' && test "$(/usr/bin/uname 2> /dev/null -o || :)" = 'Msys'; then PATH="/usr/bin:${PATH:-%empty}"; fi

if test -z "${MAIN_DIR-}"; then
# shellcheck disable=SC3028,SC2128 # Intended: In POSIX sh, BASH_SOURCE is undefined / Expanding an array without an index only gives the first element
if MAIN_DIR="${BASH_SOURCE-}" && test -n "${MAIN_DIR}"; then :; else MAIN_DIR="${1}"; fi
case "${MAIN_DIR}" in *'cmdline.sh') ;; *) MAIN_DIR='' ;; esac

if test -n "${MAIN_DIR}" && MAIN_DIR="$(dirname "${MAIN_DIR}")" && MAIN_DIR="$(realpath "${MAIN_DIR}")"; then
export MAIN_DIR
else unset MAIN_DIR; fi
if test -n "${MAIN_DIR}" && MAIN_DIR="$(dirname "${MAIN_DIR}")" && MAIN_DIR="$(realpath "${MAIN_DIR}")"; then export MAIN_DIR; else unset MAIN_DIR; fi
fi

if test -n "${MAIN_DIR-}" && test -z "${USER_HOME-}"; then
Expand Down Expand Up @@ -112,7 +107,7 @@ if test "${A5K_FUNCTIONS_INCLUDED:-false}" = 'false'; then
else
if test "${#}" -gt 0; then
case "${*}" in
*"${_newline}"*) printf 1>&2 '%s\n' 'WARNING: Newline character found, parameters dropped' ;;
*"$(printf '\n')"*) printf 1>&2 '%s\n' 'WARNING: Newline character found, parameters dropped' ;;
*)
__QUOTED_PARAMS="$(printf '%s\n' "${@}")"
export __QUOTED_PARAMS
Expand Down
1 change: 1 addition & 0 deletions tools/bits-info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1178,6 +1178,7 @@ main()
# shellcheck disable=SC3028 # In POSIX sh, RANDOM is undefined
if RANDOM='1234' && test "${RANDOM}" = '1234'; then
_max='unsupported' # $RANDOM is NOT supported
unset RANDOM
elif test "$(seed_and_get_random '1234' || :)" != "$(seed_and_get_random '1234' || :)"; then
_max='ignored' # $RANDOM is supported but the seed is ignored
else
Expand Down

0 comments on commit c8d3442

Please sign in to comment.