Task #101545 - fixed.err

back to task #101545
download
Error: SHELLCHECK_WARNING (CWE-140):
/usr/libexec/anaconda/webui-desktop:179:38: warning[SC2206]: Quote to prevent word splitting/globbing, or split robustly with mapfile or read -a.
#  177|           # FIXME: Launch slitherer as Xwayland app to address the dropdown-autoclose issue
#  178|           # Related to: https://bugzilla.redhat.com/show_bug.cgi?id=2404424
#  179|->         BROWSER=(QT_QPA_PLATFORM=xcb ${DEFAULT_BROWSER_CMD})
#  180|           echo "Using Slitherer browser command with XWayland workaround: ${BROWSER[@]}" >&2
#  181|       else

Error: SHELLCHECK_WARNING (CWE-138):
/usr/libexec/anaconda/webui-desktop:180:73: error[SC2145]: Argument mixes string and array. Use * or separate argument.
#  178|           # Related to: https://bugzilla.redhat.com/show_bug.cgi?id=2404424
#  179|           BROWSER=(QT_QPA_PLATFORM=xcb ${DEFAULT_BROWSER_CMD})
#  180|->         echo "Using Slitherer browser command with XWayland workaround: ${BROWSER[@]}" >&2
#  181|       else
#  182|           BROWSER=(${DEFAULT_BROWSER_CMD})