Browse Source

if no exit code

pull/3000/head
Daniel Gibbs 6 years ago
parent
commit
115eaf4347
  1. 4
      lgsm/functions/core_trap.sh

4
lgsm/functions/core_trap.sh

@ -6,7 +6,9 @@
fn_exit_trap(){ fn_exit_trap(){
echo -e "" echo -e ""
exitcode=0 if [ -z "${exitcode}" ]; then
exitcode=0
fi
core_exit.sh core_exit.sh
} }

Loading…
Cancel
Save