Text menus: Don't pause when invoked via command line arguments

This commit is contained in:
the-sane 2024-01-22 11:41:57 -05:00
parent 6bd310b5c2
commit 0a48396ffd

View File

@ -368,7 +368,10 @@ message() {
# info message # info message
# call format: message info "text to display" # call format: message info "text to display"
printf "\n$2\n\n" printf "\n$2\n\n"
read -n 1 -s -p "Press any key..." if [ "$cmd_line" != "true" ]; then
# Don't pause if we've been invoked via command line arguments
read -n 1 -s -p "Press any key..."
fi
;; ;;
"warning") "warning")
# warning message # warning message
@ -2565,6 +2568,7 @@ Usage: lug-helper <options>
# Call the requested functions and exit # Call the requested functions and exit
if [ "${#cargs[@]}" -gt 0 ]; then if [ "${#cargs[@]}" -gt 0 ]; then
cmd_line="true"
for (( x=0; x<"${#cargs[@]}"; x++ )); do for (( x=0; x<"${#cargs[@]}"; x++ )); do
${cargs[x]} ${cargs[x]}
done done