From c7ab0ebd8db583a9d0f1b1b514c4acea15ec8f32 Mon Sep 17 00:00:00 2001
From: Ezri Zhu <me@ezrizhu.com>
Date: Fri, 10 Jan 2025 18:09:37 -0500
Subject: [PATCH] remove mention of findmnt in code

---
 try | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/try b/try
index c62f0a2..caa45d4 100755
--- a/try
+++ b/try
@@ -108,13 +108,6 @@ try() {
     #
     # KK 2023-06-29 This approach (of mounting each root directory separately) was necessary because we could not mount `/` in an overlay.
     #               However, this might be solvable using mergerfs/unionfs, allowing us to mount an overlay on a unionfs of the `/` once.
-    #
-    # findmnt
-    # --real: only list real filesystems
-    # -n: no header
-    # -r: raw output
-    # -o target: only print the mount target
-    # then we want to exclude the root partition "/"
     while IFS="" read -r mountpoint
     do
         ## Only make the directory if the original is a directory too