Browse Source

uninstall 2>/dev/null

main
pvincent 4 days ago
parent
commit
99d9f0e16f
  1. 4
      lib/uninstall.bash

4
lib/uninstall.bash

@ -25,8 +25,8 @@ function uninstall {
source "$MIAOU_BASH_DIR"/lib/functions.bash
assert_system_mode
assert_root
cd || exit
if _confirm_destructive; then
cd || exit 2 # exit should not occur!
if _confirm_destructive 2>/dev/null; then
uninstall
echo 'MIAOU-BASH fully uninstalled, previous settings restored from original'
else

Loading…
Cancel
Save