uninstall 2>/dev/null

This commit is contained in:
pvincent
2026-08-11 19:30:50 +04:00
parent 1b7927f810
commit 99d9f0e16f
+2 -2
View File
@@ -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