Browse Source

feat: add exitcode handling to command_install.sh

The commit adds a check for the exitcode variable in command_install.sh. If it is empty, it sets it to 0. This change ensures proper handling of the exitcode in the script.
pull/4304/head
Daniel Gibbs 2 years ago
parent
commit
3af818d4e0
  1. 3
      lgsm/modules/command_install.sh

3
lgsm/modules/command_install.sh

@ -48,5 +48,8 @@ else
fix.sh fix.sh
install_stats.sh install_stats.sh
install_complete.sh install_complete.sh
if [ -z "${exitcode}" ]; then
exitcode=0
fi
fi fi
core_exit.sh core_exit.sh

Loading…
Cancel
Save