- Fix for posix shell syntax for trap in run_msg.sh test script.

This commit is contained in:
W.C.A. Wijngaards
2020-04-16 13:17:33 +02:00
parent 3cd288a9f2
commit 963cfb58be
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ cleanup() {
if test -f "$t.bak"; then mv "$t.bak" "$t"; fi
exit 0
}
trap cleanup SIGINT
trap cleanup INT
for t in $RUNLIST
do