Skip to content
Snippets Groups Projects
Commit abab405c authored by jdh8d's avatar jdh8d
Browse files

Avoid failures due to terminal issues

parent ad13f0c1
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ if [ ! -f ${IDAROOT}/libida.so ]; then echo IDAROOT is set poorly, please fix.;
# remove tmp files
rm -f $1.id? $1.{nam,til,log,syms} `basename $1 .ncexe`.id?
old_stty=`stty -g`
old_stty=`stty -g` || true
......@@ -72,8 +72,8 @@ fi
# SMP seems to mess up the terminal, using this to fix it.
/usr/bin/reset
stty $old_stty
/usr/bin/reset || true
stty $old_stty || true
# Get the output file SMP.syms into $1.syms.
# mv SMP.annot $1.annot
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment