Update trap msg

This commit is contained in:
Santiago Lo Coco 2022-01-29 18:06:54 -03:00
parent 708a1bdbf6
commit e0e3d61cbe
1 changed files with 3 additions and 1 deletions

View File

@ -626,7 +626,9 @@ runScript() {
clear
fi
trap 'printAndExit "You pressed <Ctrl-c/d> or exit calsais script."' INT QUIT TERM
trap 'printAndExit "Received SIGINT signal."' INT
trap 'printAndExit "Received SIGQUIT signal."' QUIT
trap 'printAndExit "Received SIGTERM signal."' TERM
calcAndRun dialog --title "calsais" --msgbox "\"\n${welcomeMsg}\"" 7 WIDTH
while [ $i -lt "${#steps[@]}" ]; do