aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
Diffstat (limited to 'functions')
-rw-r--r--functions4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions b/functions
index 02852b8..b409055 100644
--- a/functions
+++ b/functions
@@ -497,8 +497,8 @@ umount_all() {
continue
fi
- mounts+=("$target")
- done < <(findmnt -mrunRo TARGET,FSTYPE,OPTIONS / | tac)
+ mounts=("$target" "${mounts[@]}")
+ done < <(findmnt -mrunRo TARGET,FSTYPE,OPTIONS /)
umount -r "${mounts[@]}"